forked from extern/nushell
Make arg eval lazy, remove old arg evaluation code (#3603)
* Remove old argument eval * Merge main * fmt * clippy * clippy * clippy
This commit is contained in:
@ -53,7 +53,6 @@ impl WholeStreamCommand for SubCommand {
|
||||
}
|
||||
|
||||
fn operate(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
||||
let args = args.evaluate_once()?;
|
||||
let precision: Option<Tagged<i16>> = args.get_flag("precision")?;
|
||||
let input = args.input;
|
||||
let precision = if let Some(precision) = precision {
|
||||
|
Reference in New Issue
Block a user