Skip to content

Commit

Permalink
argument order
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis committed Dec 15, 2023
1 parent 17b893c commit 66af346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dask_awkward/lib/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@ def concatenate(
raise IncompatiblePartitions("concatenate", *arrays)

fn = ConcatenateFnAxisGT0(axis=axis, behavior=behavior, attrs=attrs)
return map_partitions(fn, label="concatenate-axisgt0", *arrays)
return map_partitions(fn, *arrays, label="concatenate-axisgt0")

raise DaskAwkwardNotImplemented("TODO")

0 comments on commit 66af346

Please # to comment.