fix: make cmd mutable and remove unused import

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-29 14:32:18 -03:00
parent fbdcb94ba1
commit c07c83fb8f
2 changed files with 1 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ fn main() -> Result<(), Error> {
use std::fs;
let proj_dirs = ProjectDirs::from("gt0.ca", "Andrew Phillips", "Keep");
let cmd = Args::command();
let mut cmd = Args::command();
let args = Args::parse();
// Validate arguments based on mode

View File

@@ -4,7 +4,6 @@ use std::path::PathBuf;
use crate::config;
use crate::services::error::CoreError;
use crate::services::item_service::ItemService;
use clap::error::ErrorKind;
use clap::Command;
use log::warn;
use rusqlite::Connection;