(self, data: duckarray[Any, Any])
| 38 | self.array_cls = Array |
| 39 | |
| 40 | def is_chunked_array(self, data: duckarray[Any, Any]) -> bool: |
| 41 | return is_duck_dask_array(data) |
| 42 | |
| 43 | def chunks(self, data: Any) -> _NormalizedChunks: |
| 44 | return data.chunks # type: ignore[no-any-return] |
no test coverage detected