Skip to content

Commit

Permalink
Merge pull request #603 from jeckersb/clippy
Browse files Browse the repository at this point in the history
Clippy janitor cleanup
  • Loading branch information
cgwalters committed Jun 13, 2024
2 parents a15090b + 27ef06d commit 8f0a0cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ where
if pb.is_hidden() {
print!("{}...", msg);
std::io::stdout().flush().unwrap();
} else {
}
let r = f.await;
if pb.is_hidden() {
Expand Down
3 changes: 3 additions & 0 deletions tests-integration/src/tests-integration.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#![allow(clippy::needless_borrow)]
#![allow(clippy::needless_borrows_for_generic_args)]

use std::path::PathBuf;

use camino::Utf8PathBuf;
Expand Down

0 comments on commit 8f0a0cf

Please sign in to comment.