Clean up tools warnings

This commit is contained in:
Jackson Coxson
2025-07-24 13:32:09 -06:00
parent a5d7894543
commit 5531392cf3
2 changed files with 6 additions and 7 deletions

View File

@@ -208,7 +208,7 @@ async fn main() {
unique_chip_id,
async |((n, d), _)| {
let percent = (n as f64 / d as f64) * 100.0;
print!("\rProgress: {:.2}%", percent);
print!("\rProgress: {percent:.2}%");
std::io::stdout().flush().unwrap(); // Make sure it prints immediately
if n == d {
println!();