Skip to content

Commit 7927741

Browse files
committed
refactor(date): reorder imports for logical grouping
Moved the ShortcutValueParser import after the unix-specific import to better organize platform-specific and general imports in date.rs.
1 parent be6ecb9 commit 7927741

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/uu/date/src/date.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ use uucore::{format_usage, show};
2626
#[cfg(windows)]
2727
use windows_sys::Win32::{Foundation::SYSTEMTIME, System::SystemInformation::SetSystemTime};
2828

29-
use uucore::parser::shortcut_value_parser::ShortcutValueParser;
3029
#[cfg(unix)]
3130
use std::os::unix::ffi::OsStrExt;
31+
use uucore::parser::shortcut_value_parser::ShortcutValueParser;
3232

3333
// Options
3434
const DATE: &str = "date";

0 commit comments

Comments
 (0)