fix: remove unused imports and fix type mismatches

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-25 21:11:40 -03:00
parent 36a53c890c
commit c00b6230d4
2 changed files with 3 additions and 5 deletions

View File

@@ -37,7 +37,7 @@ impl CompressionService {
let reader = engine.open(item_path.clone())
.map_err(|e| CoreError::Other(anyhow!("Failed to open item file {:?}: {}", item_path, e)))?;
Ok(reader)
Ok(Box::new(reader))
}
}