fix(cli): clippy error

This commit is contained in:
Konstantinos Artopoulos
2025-10-08 11:09:20 +03:00
parent 1f68e80c50
commit 435a472bca

View File

@@ -1327,7 +1327,7 @@ impl Limbo {
}
Ok(())
};
match self.handle_row(&sql, handler) {
match self.handle_row(sql, handler) {
Ok(_) => Ok(db_names),
Err(e) => Err(anyhow::anyhow!("Error in database list: {}", e)),
}