fix: add missing anyhow::Error to Result return type in status.rs

This commit is contained in:
Andrew Phillips (aider)
2025-05-13 16:32:15 -03:00
parent e9c6892111
commit ecc6646c6c

View File

@@ -110,7 +110,7 @@ pub fn mode_status(
args: crate::Args,
data_path: PathBuf,
db_path: PathBuf,
) -> Result<()> {
) -> Result<(), anyhow::Error> {
let mut path_table = Table::new();
let compression_table = build_compression_table(args, default_type());