fix: update trait and remove unused io imports

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-18 08:31:47 -03:00
parent 22206de5ab
commit cd63dda271
5 changed files with 1 additions and 6 deletions

View File

@@ -1,5 +1,4 @@
use anyhow::Result;
use std::io;
use rusqlite::Connection;
use log::debug;
@@ -48,7 +47,7 @@ pub trait MetaPlugin {
false
}
fn finalize(&mut self) -> io::Result<String>;
fn finalize(&mut self) -> Result<()>;
// Update the meta plugin with new data
fn update(&mut self, data: &[u8]);