(cls, inputs: list, **kwargs)
| 1111 | |
| 1112 | @classmethod |
| 1113 | def combine(cls, inputs: list, **kwargs): # type: ignore |
| 1114 | func = cls.reduction_combine or cls.reduction_aggregate or cls.reduction_chunk |
| 1115 | return func(inputs, **kwargs) # type: ignore |
| 1116 | |
| 1117 | @classmethod |
| 1118 | def aggregate(cls, inputs, meta, index, **kwargs): |