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 3b06c53 commit 98f00ddCopy full SHA for 98f00dd
1 file changed
src/zarr/storage/_fsspec.py
@@ -202,10 +202,9 @@ def from_mapper(
202
-------
203
FsspecStore
204
"""
205
- if not fs_map.fs.async_impl or not fs_map.fs.asynchronous:
206
- fs_map.fs = _make_async(fs_map.fs)
+ fs = _make_async(fs_map.fs)
207
return cls(
208
- fs=fs_map.fs,
+ fs=fs,
209
path=fs_map.root,
210
read_only=read_only,
211
allowed_exceptions=allowed_exceptions,
0 commit comments