From 60515c628ab5918144ccd0f80cc80f19148c5c16 Mon Sep 17 00:00:00 2001 From: "Andrew Phillips (aider)" Date: Sat, 10 May 2025 08:29:08 -0300 Subject: [PATCH] refactor: remove unused imports from get.rs --- src/modes/get.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/modes/get.rs b/src/modes/get.rs index b000916..cc6a58e 100644 --- a/src/modes/get.rs +++ b/src/modes/get.rs @@ -1,10 +1,8 @@ -use anyhow::{Result, Error, anyhow}; +use anyhow::anyhow; use clap::Command; use crate::compression::CompressionType; -use crate::compression::get_engine; -use rusqlite::Connection; use std::str::FromStr; use std::path::PathBuf;