mirror of
https://github.com/nushell/nushell.git
synced 2025-08-12 13:37:45 +02:00
Apply more recent/nightly clippy lints (#7916)
# Description - Use inline format strings in dataframe code - Fix manual `.is_ascii_digit()` check - Remove unnecessary `.into_iter()` calls
This commit is contained in:
committed by
GitHub
parent
7402589775
commit
1ea39abcff
@ -87,7 +87,7 @@ impl Command for NuCheck {
|
||||
stdout: Some(stream),
|
||||
..
|
||||
} => {
|
||||
let raw_stream: Vec<_> = stream.stream.into_iter().collect();
|
||||
let raw_stream: Vec<_> = stream.stream.collect();
|
||||
for r in raw_stream {
|
||||
match r {
|
||||
Ok(v) => contents.extend(v),
|
||||
|
Reference in New Issue
Block a user