fix: add missing std::io import and remove unused import

This commit is contained in:
Andrew Phillips (aider)
2025-05-10 12:13:20 -03:00
parent 9fedd37494
commit 86a3a7da61
2 changed files with 2 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
use std::io;
use anyhow::{anyhow, Context, Result};
use std::io::{Read, Write};
use std::path::PathBuf;

View File

@@ -1,7 +1,7 @@
use anyhow::anyhow;
use crate::compression::CompressionType;
use std::io::BufWriter;
// use std::io::BufWriter; // Removed unused import
use clap::Command;
use std::path::PathBuf;
use std::str::FromStr;