Address most of the cargo-clippy lints

This commit is contained in:
2025-07-02 22:51:58 -05:00
parent f068e8233e
commit 336f1453b9
4 changed files with 7 additions and 7 deletions

View File

@@ -36,7 +36,7 @@ async fn main() -> Result<(), gt_tool::Error> {
// Print in reverse order so the newest items are closest to the
// user's command prompt. Otherwise the newest item scrolls off the
// screen and can't be seen.
let _ = itertools::Itertools::intersperse(
itertools::Itertools::intersperse(
releases
.iter()
.rev()
@@ -152,5 +152,5 @@ fn match_release_by_tag(tag: &String, releases: Vec<Release>) -> Option<Release>
}
}
}
return release;
release
}