Skip to content

Commit

Permalink
fixed cargo clippy deref warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelPanic0x committed Dec 13, 2024
1 parent a01c88d commit 380f0bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ fn create_progress_bar(file_size: u64) -> ProgressBar {
pb.set_style(
ProgressStyle::default_bar()
// .template("[{elapsed_precise}] [{wide_bar:.cyan/blue}] {bytes}/{total_bytes} ({eta})")
.template(&template)
.template(template)
.unwrap()
.progress_chars("#>-"),
);
Expand Down

0 comments on commit 380f0bc

Please sign in to comment.