fix: add FromStr import, remove unused compression_engine import

This commit is contained in:
Andrew Phillips (aider)
2025-05-12 17:20:44 -03:00
parent 0dba671f8d
commit f6b6bc5768
2 changed files with 1 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ use is_terminal::IsTerminal;
use std::collections::HashMap;
use std::io::{self, Read};
use std::path::PathBuf;
use std::str::FromStr;
use clap::error::ErrorKind;
use clap::Command;

View File

@@ -4,7 +4,6 @@ use std::str::FromStr;
use crate::db;
use crate::compression_engine::CompressionType;
use crate::compression_engine;
use clap::error::ErrorKind;
use clap::Command;
use log::{debug, info};