(
self,
*args: Any, # can't type this as mypy assumes args are all same type, but dask unify_chunks args alternate types
**kwargs: Any,
)
| 228 | ) # type: ignore[no-untyped-call] |
| 229 | |
| 230 | def unify_chunks( |
| 231 | self, |
| 232 | *args: Any, # can't type this as mypy assumes args are all same type, but dask unify_chunks args alternate types |
| 233 | **kwargs: Any, |
| 234 | ) -> tuple[dict[str, _NormalizedChunks], list[DaskArray]]: |
| 235 | from dask.array.core import unify_chunks |
| 236 | |
| 237 | return unify_chunks(*args, **kwargs) # type: ignore[no-any-return, no-untyped-call] |
| 238 | |
| 239 | def store( |
| 240 | self, |
nothing calls this directly
no test coverage detected