MCPcopy Index your code
hub / github.com/pydata/xarray / unify_chunks

Method unify_chunks

xarray/namedarray/daskmanager.py:230–237  ·  view source on GitHub ↗
(
        self,
        *args: Any,  # can't type this as mypy assumes args are all same type, but dask unify_chunks args alternate types
        **kwargs: Any,
    )

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls 1

unify_chunksFunction · 0.85

Tested by

no test coverage detected