Commit 85580df
committed
Bugfix: drop redundant
Linux clippy is stricter on `unused_qualifications` (the module is `#[cfg(target_os = "linux")]`, so macOS never sees this code) and tripped on `std::time::Duration::from_secs(2)` since `Duration` is already imported at the top of the file. Use the bare `Duration::from_secs(2)`.
Caught by CI on the previous push (commit 91afacb); verified locally on the UTM Ubuntu VM with `cargo clippy --all-targets --locked -- -D warnings`.std::time:: qualifier in accent_color_linux test1 parent 917938e commit 85580df
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
244 | 244 | | |
245 | 245 | | |
246 | 246 | | |
247 | | - | |
| 247 | + | |
248 | 248 | | |
249 | 249 | | |
250 | 250 | | |
| |||
0 commit comments