chore: apply recommendations from clippy

This commit is contained in:
Cheong Lau 2025-10-04 10:51:18 +10:00 committed by GitHub
parent cec55dafd7
commit 8e0f1c4a09
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
56 changed files with 720 additions and 824 deletions

View file

@ -11,7 +11,7 @@ fn main() -> cosmic::iced::Result {
return Ok(());
};
let start = applet.rfind('/').map(|v| v + 1).unwrap_or(0);
let start = applet.rfind('/').map_or(0, |v| v + 1);
let cmd = &applet.as_str()[start..];
tracing::info!("Starting `{cmd}` with version {VERSION}");