(self, key: indexing.ExplicitIndexer)
| 315 | __slots__ = () |
| 316 | |
| 317 | async def async_getitem(self, key: indexing.ExplicitIndexer) -> np.typing.ArrayLike: |
| 318 | raise NotImplementedError("Backend does not support asynchronous loading") |
| 319 | |
| 320 | def get_duck_array(self, dtype: np.typing.DTypeLike | None = None): |
| 321 | key = indexing.BasicIndexer((slice(None),) * self.ndim) |
no outgoing calls
no test coverage detected