(cls, df, **kwargs)
| 1107 | class ArrayReduction(Reduction): |
| 1108 | @classmethod |
| 1109 | def chunk(cls, df, **kwargs): |
| 1110 | return cls.reduction_chunk(df, **kwargs) |
| 1111 | |
| 1112 | @classmethod |
| 1113 | def combine(cls, inputs: list, **kwargs): # type: ignore |
nothing calls this directly
no test coverage detected