(
self,
)
| 630 | raise AttributeError("Method requires self.data to be a dask array.") |
| 631 | |
| 632 | def __dask_postcompute__( |
| 633 | self, |
| 634 | ) -> tuple[PostComputeCallable, tuple[Any, ...]]: |
| 635 | if is_duck_dask_array(self._data): |
| 636 | array_func, array_args = self._data.__dask_postcompute__() # type: ignore[no-untyped-call] |
| 637 | return self._dask_finalize, (array_func,) + array_args |
| 638 | else: |
| 639 | raise AttributeError("Method requires self.data to be a dask array.") |
| 640 | |
| 641 | def __dask_postpersist__( |
| 642 | self, |
nothing calls this directly
no test coverage detected