Skip to content

Commit 15e707b

Browse files
committed
chore: fmt
1 parent eb1c61e commit 15e707b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/toolchain/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,10 @@ pub async fn download_file(
110110
let chunk = chunk_result?;
111111
size_downloaded += chunk.len();
112112
if let Some(len) = len {
113-
print!("\rDownloading {file_name} {}/{} bytes", size_downloaded, len);
113+
print!(
114+
"\rDownloading {file_name} {}/{} bytes",
115+
size_downloaded, len
116+
);
114117
} else {
115118
print!("\rDownloaded {file_name} {} bytes", size_downloaded);
116119
}

0 commit comments

Comments
 (0)