From 6ebe3842564d4fa1f5b33a284fc33d7da45da136 Mon Sep 17 00:00:00 2001 From: Lawrence Mitchell Date: Wed, 14 Sep 2022 19:09:08 +0100 Subject: [PATCH] aca: Provide default for split_out (#9493) --- dask/dataframe/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dask/dataframe/core.py b/dask/dataframe/core.py index d6b44476f26..31c99380108 100644 --- a/dask/dataframe/core.py +++ b/dask/dataframe/core.py @@ -6368,6 +6368,8 @@ def apply_concat_apply( >>> apply_concat_apply([a, b], chunk=chunk, aggregate=agg) # doctest: +SKIP """ + if split_out is None: + split_out = 1 if chunk_kwargs is None: chunk_kwargs = dict() if aggregate_kwargs is None: