diff --git a/crates/nu-command/src/filters/take/take_until.rs b/crates/nu-command/src/filters/take/take_until.rs index c7debf5dee..025f80e632 100644 --- a/crates/nu-command/src/filters/take/take_until.rs +++ b/crates/nu-command/src/filters/take/take_until.rs @@ -12,11 +12,11 @@ impl Command for TakeUntil { fn signature(&self) -> Signature { Signature::build(self.name()) .input_output_types(vec![ - (Type::table(), Type::table()), ( Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)), ), + (Type::table(), Type::table()), ]) .required( "predicate",