Skip to content

Commit

Permalink
chore(clippy): make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Jul 14, 2023
1 parent 4c96617 commit 7441bb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/reth/src/db/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ impl Command {
let max_widths = stats_table.column_max_content_widths();

let mut seperator = Row::new();
for (i, width) in max_widths.iter().enumerate() {
seperator.add_cell(Cell::new("-".repeat(*width as usize)));
for width in max_widths {
seperator.add_cell(Cell::new("-".repeat(width as usize)));
}
stats_table.add_row(seperator);

Expand Down

0 comments on commit 7441bb4

Please sign in to comment.