fix: correct invalid self import in delete.rs

The original line `use crate::db::self;` was invalid because `self` cannot be used in a `use` statement outside of a list. Changed to `use crate::db;` to properly import the module.
This commit is contained in:
Andrew Phillips (aider)
2025-05-10 08:41:08 -03:00
parent 6c3f717b8d
commit 1207dfc2c0

View File

@@ -2,7 +2,7 @@ use anyhow::{Context, Result, anyhow};
use std::fs; use std::fs;
use std::path::PathBuf; use std::path::PathBuf;
use crate::db::self; use crate::db;
use clap::Command; use clap::Command;
use log::{debug, warn}; use log::{debug, warn};
use clap::error::ErrorKind; use clap::error::ErrorKind;