(cls, inputs: list, **kwargs)
| 1340 | |
| 1341 | @classmethod |
| 1342 | def combine(cls, inputs: list, **kwargs): # type: ignore |
| 1343 | func = cls.reduction_combine or cls.reduction_aggregate or cls.reduction_chunk |
| 1344 | df = _concat(inputs) |
| 1345 | return func(df, **kwargs) # type: ignore |
| 1346 | |
| 1347 | def _divisions(self): |
| 1348 | # TODO: We can do better in some cases |