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 28f8420 commit b782704Copy full SHA for b782704
src/zarr/storage/_common.py
@@ -320,7 +320,7 @@ async def make_store_path(
320
# We deliberate only consider dict[str, Buffer] here, and not arbitrary mutable mappings.
321
# By only allowing dictionaries, which are in-memory, we know that MemoryStore appropriate.
322
store = await MemoryStore.open(store_dict=store_like, read_only=_read_only)
323
- elif _has_fsspec:
+ elif _has_fsspec and isinstance(store_like, FSMap):
324
if not isinstance(store_like, FSMap):
325
raise (TypeError(f"Unsupported type for store_like: '{type(store_like).__name__}'"))
326
if path:
0 commit comments