yeah the table / table io type is not needed

This commit is contained in:
Devyn Cairns 2024-07-11 18:32:57 -07:00
parent aa8686c889
commit 971567f370

View File

@ -11,13 +11,10 @@ impl Command for TakeUntil {
fn signature(&self) -> Signature {
Signature::build(self.name())
.input_output_types(vec![
(
Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)),
),
(Type::table(), Type::table()),
])
.input_output_types(vec![(
Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)),
)])
.required(
"predicate",
SyntaxShape::Closure(Some(vec![SyntaxShape::Any, SyntaxShape::Int])),