m/cup
1
0
mirror of https://github.com/sergi0g/cup.git synced 2025-11-15 08:33:49 -05:00

Fix some clippy lints

This commit is contained in:
Sergio
2025-02-18 16:57:08 +02:00
parent 787a730ab5
commit 5b428dbf67

View File

@@ -42,7 +42,7 @@ pub fn print_updates(updates: &[Update], icons: &bool) {
_ => 0, _ => 0,
}; };
let time_length = update.time.to_string().len(); let time_length = update.time.to_string().len();
return ( (
if reference_length > acc.0 { if reference_length > acc.0 {
reference_length reference_length
} else { } else {
@@ -58,7 +58,7 @@ pub fn print_updates(updates: &[Update], icons: &bool) {
} else { } else {
acc.2 acc.2
}, },
); )
}); });
println!( println!(
" \x1b[90;1m╭{:─<rw$}{:─<sw$}{:─<tw$}\x1b[0m", " \x1b[90;1m╭{:─<rw$}{:─<sw$}{:─<tw$}\x1b[0m",
@@ -125,7 +125,7 @@ pub fn print_updates(updates: &[Update], icons: &bool) {
}; };
let description = format!( let description = format!(
"{} {}", "{} {}",
status.to_string(), status,
match &update.result.info { match &update.result.info {
UpdateInfo::Version(info) => { UpdateInfo::Version(info) => {
format!("({}{})", info.current_version, info.new_version) format!("({}{})", info.current_version, info.new_version)