Skip to content

Commit

Permalink
mapfilter: fix args passing
Browse files Browse the repository at this point in the history
  • Loading branch information
pfackeldey committed Nov 19, 2024
1 parent 4213659 commit 1026471
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dask_awkward/lib/decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,12 +323,12 @@ def __call__(self, *args: tp.Any, **kwargs: tp.Any) -> tp.Any:

hlg, meta, deps, name = _map_partitions_prepare(
fn,
*args,
*arg_flat_deps_expanded,
*kwarg_flat_deps,
label=self.label,
token=self.token,
meta=self.meta,
output_divisions=None,
**kwargs,
)

# check consistent partitioning
Expand Down

0 comments on commit 1026471

Please sign in to comment.