Skip to content

Commit

Permalink
make Clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
amtoine committed Aug 26, 2023
1 parent ca27289 commit 874d929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ fn repr_table(table: &[Value]) -> (Vec<String>, Vec<String>, Vec<Vec<String>>) {
})
.collect::<Vec<Vec<String>>>();

(table[0].columns(), shapes, rows)
(table[0].columns().to_vec(), shapes, rows)
}

/// render the whole data
Expand Down

0 comments on commit 874d929

Please sign in to comment.