chore: remove unused imports

This commit is contained in:
Andrew Phillips (aider)
2025-05-22 14:02:24 -03:00
parent a68d75351f
commit 970d69af70
2 changed files with 2 additions and 3 deletions

View File

@@ -1,8 +1,7 @@
use anyhow::{Context, Result, anyhow}; use anyhow::Result;
use std::io; use std::io;
use std::io::{Read, Write}; use std::io::{Read, Write};
use std::path::PathBuf; use std::path::PathBuf;
use std::process::{Command, Stdio};
use strum::IntoEnumIterator; use strum::IntoEnumIterator;
use log::*; use log::*;

View File

@@ -6,7 +6,7 @@ use clap::error::ErrorKind;
use std::path::PathBuf; use std::path::PathBuf;
use std::str::FromStr; use std::str::FromStr;
use crate::compression_engine::{CompressionType, get_compression_engine}; use crate::compression_engine::CompressionType;
use crate::db::{get_item, get_item_last, get_item_matching}; use crate::db::{get_item, get_item_last, get_item_matching};
use crate::modes::common::get_format_box_chars_no_border_line_separator; use crate::modes::common::get_format_box_chars_no_border_line_separator;
use chrono::prelude::*; use chrono::prelude::*;