chore: linty lint

This commit is contained in:
2026-02-06 10:26:24 -08:00
parent e8e9f5c79c
commit dfb1ab36ce
4 changed files with 26 additions and 20 deletions
+1 -1
View File
@@ -498,7 +498,7 @@ impl WslBridge {
if tool_stats.call_count > 0 {
// Use session average tokens per call for this tool
let avg_tokens = (tool_stats.estimated_input_tokens + tool_stats.estimated_output_tokens)
/ tool_stats.call_count as u64;
/ tool_stats.call_count;
tool_overhead_tokens += avg_tokens;
println!("[COST ESTIMATION] Tool {} average: {} tokens", tool_name, avg_tokens);
}