Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroXbrock committed Jan 8, 2025
1 parent 93c75aa commit fa66bc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cli/src/commands/report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub fn report(
let report_path = format!("{}/report.csv", contender_dir);
let mut writer = WriterBuilder::new()
.has_headers(true)
.from_path(report_path.to_owned())?;
.from_path(&report_path)?;
write_run_txs(&mut writer, &txs)?;
println!("saved report to {}", report_path);
};
Expand Down

0 comments on commit fa66bc6

Please sign in to comment.