refactor: improve code formatting and readability in SQL and function calls

This commit is contained in:
Andrew Phillips
2025-05-14 22:50:35 -03:00
committed by Andrew Phillips (aider)
parent dd8f828ed3
commit 5a6a8ee97b
5 changed files with 49 additions and 37 deletions

View File

@@ -299,7 +299,9 @@ fn main() -> Result<(), Error> {
KeepModes::Delete => {
crate::modes::delete::mode_delete(&mut cmd, &args, ids, tags, &mut conn, data_path)?
}
KeepModes::Status => crate::modes::status::mode_status(&mut cmd, &args, data_path, db_path)?,
KeepModes::Status => {
crate::modes::status::mode_status(&mut cmd, &args, data_path, db_path)?
}
_ => todo!(),
}