Clippy fix for Rust 1.63 (#6299)

Take more sensitive lints into account

Somewhat ugly in some cases is the replacement of `.get(0)` with
`.first()`
This commit is contained in:
Stefan Holderbach
2022-08-11 18:54:54 +02:00
committed by GitHub
parent 08c98967e0
commit c2f4969d4f
24 changed files with 35 additions and 41 deletions

View File

@ -446,7 +446,7 @@ impl NuDataFrame {
// sorting dataframe by the first column
let column_names = self.as_ref().get_column_names();
let first_col = column_names
.get(0)
.first()
.expect("already checked that dataframe is different than 0");
// if unable to sort, then unable to compare