diff --git a/crates/nu-command/src/filters/last.rs b/crates/nu-command/src/filters/last.rs index 944ef59374..2a5135f8f2 100644 --- a/crates/nu-command/src/filters/last.rs +++ b/crates/nu-command/src/filters/last.rs @@ -20,15 +20,6 @@ impl Command for Last { fn signature(&self) -> Signature { Signature::build("last") .input_output_types(vec![ - ( - // TODO: This variant duplicates the functionality of - // `take`. See #6611, #6611, #6893 - // TODO: This is too permissive; if we could express this - // using a type parameter style it would be List -> - // List. - Type::List(Box::new(Type::Any)), - Type::List(Box::new(Type::Any)), - ), ( // TODO: This is too permissive; if we could express this // using a type parameter it would be List -> T.