(self)
| 608 | raise AttributeError("Method requires self.data to be a dask array.") |
| 609 | |
| 610 | def __dask_layers__(self) -> Sequence[str]: |
| 611 | if is_duck_dask_array(self._data): |
| 612 | return self._data.__dask_layers__() |
| 613 | else: |
| 614 | raise AttributeError("Method requires self.data to be a dask array.") |
| 615 | |
| 616 | @property |
| 617 | def __dask_optimize__( |
nothing calls this directly
no test coverage detected