mirror of
https://github.com/nushell/nushell.git
synced 2025-08-11 01:33:47 +02:00
Fix issue in external subexpression paths (#3642)
* Fix issue in external subexpression paths * new clippy dropped * clippy
This commit is contained in:
@ -239,7 +239,7 @@ use nu_errors::ShellError;
|
||||
# ...
|
||||
|
||||
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
||||
Ok(args.input.take(2).to_output_stream())
|
||||
Ok(args.input.take(2).into_output_stream())
|
||||
}
|
||||
|
||||
# ...
|
||||
|
Reference in New Issue
Block a user