(self)
| 602 | return None |
| 603 | |
| 604 | def __dask_keys__(self) -> NestedKeys: |
| 605 | if is_duck_dask_array(self._data): |
| 606 | return self._data.__dask_keys__() |
| 607 | else: |
| 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): |
nothing calls this directly
no test coverage detected