Skip to content

Commit b7f18a0

Browse files
committed
refactor(src/uu/rm/src/platform/linux.rs): remove unused 'self' import from std::io
Removed the unused 'self' import from the std::io module to clean up the code and avoid potential confusion, as it was not referenced anywhere in the file. This is a minor refactoring for better maintainability.
1 parent 61e6b73 commit b7f18a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/uu/rm/src/platform/linux.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use indicatif::ProgressBar;
1111
use std::ffi::OsStr;
1212
use std::fs;
13-
use std::io::{self, IsTerminal, stdin};
13+
use std::io::{IsTerminal, stdin};
1414
use std::os::unix::fs::PermissionsExt;
1515
use std::path::Path;
1616
use uucore::display::Quotable;

0 commit comments

Comments
 (0)