(self, dtype: np.typing.DTypeLike | None = None)
| 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) |
| 322 | return self[key] # type: ignore[index] |
| 323 | |
| 324 | async def async_get_duck_array(self, dtype: np.typing.DTypeLike | None = None): |
| 325 | key = indexing.BasicIndexer((slice(None),) * self.ndim) |
no outgoing calls
no test coverage detected