Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
discord9 committed Dec 10, 2024
1 parent eb1c61e commit 15e707b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/toolchain/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ pub async fn download_file(
let chunk = chunk_result?;
size_downloaded += chunk.len();
if let Some(len) = len {
print!("\rDownloading {file_name} {}/{} bytes", size_downloaded, len);
print!(
"\rDownloading {file_name} {}/{} bytes",
size_downloaded, len
);
} else {
print!("\rDownloaded {file_name} {} bytes", size_downloaded);
}
Expand Down

0 comments on commit 15e707b

Please sign in to comment.