Ignore clippy's erroneous warnings (#895)

This commit is contained in:
JT
2022-01-30 16:12:41 -05:00
committed by GitHub
parent 1fd0ddb52c
commit a51d45b99d
2 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,7 @@ fn detect_columns(
let config = stack.get_config()?;
let input = input.collect_string("", &config)?;
#[allow(clippy::needless_collect)]
let input: Vec<_> = input
.lines()
.skip(num_rows_to_skip.unwrap_or_default())