We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec8370 commit 316c63dCopy full SHA for 316c63d
xarray/core/dataset.py
@@ -287,7 +287,9 @@ def _maybe_chunk(
287
chunks = {dim: chunks[dim] for dim in var.dims if dim in chunks}
288
289
if var.ndim:
290
- guess_chunkmanager(chunked_array_type)
+ chunked_array_type = guess_chunkmanager(
291
+ chunked_array_type
292
+ ) # coerce string to ChunkManagerEntrypoint type
293
if isinstance(chunked_array_type, DaskManager):
294
from dask.base import tokenize
295
0 commit comments