Skip to content

Commit

Permalink
modify input-output types to provide more helpful error
Browse files Browse the repository at this point in the history
  • Loading branch information
Bahex committed Jan 27, 2025
1 parent f950405 commit 76a0b34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stdlib-candidate/std-rfc/aggregate/mod.nu
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ export def main [
--ops: record, # default = {min: {math min}, avg: {math avg}, max: {math max}, sum: {math sum}}
...columns: cell-path, # columns to perform aggregations on
]: [
table -> table<count: int>
table -> table<count: int>,
record -> error,
] {
let IN = $in
let md = metadata $in
Expand Down

0 comments on commit 76a0b34

Please sign in to comment.