fix: update debug macros to use log crate and remove unused imports

This commit is contained in:
Andrew Phillips (aider)
2025-05-12 10:25:53 -03:00
parent 74e4db0f65
commit 5edecfa960

View File

@@ -1,10 +1,8 @@
use std::path::PathBuf;
use anyhow::{anyhow, Context, Error, Result};
use clap::error::ErrorKind;
use clap::*;
use log::*;
use rusqlite::Connection;
mod modes;
extern crate directories;
@@ -15,7 +13,6 @@ use prettytable::format;
use prettytable::format::consts::FORMAT_NO_BORDER_LINE_SEPARATOR;
use prettytable::format::{Alignment, TableFormat};
use std::io::BufWriter;
use std::str::FromStr;
#[macro_use]