Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzejkop committed Oct 8, 2024
1 parent 3fcf232 commit 1c64d38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bin/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,20 +356,20 @@ async fn run_consistency_check(
Err(_) => {
failures_count.fetch_add(1, Ordering::SeqCst);

failures.lock().await.push(identity.clone());
failures.lock().await.push(identity);
}
}
}
Ok(None) => {
// Identity missing on world-tree
missing_count.fetch_add(1, Ordering::SeqCst);

missing_identities.lock().await.push(identity.clone());
missing_identities.lock().await.push(identity);
}
Err(_) => {
failures_count.fetch_add(1, Ordering::SeqCst);

failures.lock().await.push(identity.clone());
failures.lock().await.push(identity);
}
}
total_progress_bar.inc(1);
Expand Down

0 comments on commit 1c64d38

Please sign in to comment.