diff --git a/crates/nu-command/src/math/sum.rs b/crates/nu-command/src/math/sum.rs index ed9d27012c..6bef25bbfe 100644 --- a/crates/nu-command/src/math/sum.rs +++ b/crates/nu-command/src/math/sum.rs @@ -16,6 +16,8 @@ impl Command for SubCommand { Signature::build("math sum") .input_output_types(vec![ (Type::List(Box::new(Type::Number)), Type::Number), + (Type::List(Box::new(Type::Duration)), Type::Duration), + (Type::List(Box::new(Type::Filesize)), Type::Filesize), (Type::Range, Type::Number), (Type::Table(vec![]), Type::Table(vec![])), ])