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.
2 parents e767be5 + 97aa42f commit 09b1a43Copy full SHA for 09b1a43
changes/3195.bugfix.rst
@@ -0,0 +1 @@
1
+Add missing import for AsyncFileSystemWrapper for _make_async in _fsspec.py
src/zarr/storage/_fsspec.py
@@ -68,7 +68,9 @@ def _make_async(fs: AbstractFileSystem) -> AsyncFileSystem:
68
"2024.12.0 or later to enable this functionality."
69
)
70
71
- return fsspec.implementations.asyn_wrapper.AsyncFileSystemWrapper(fs, asynchronous=True)
+ from fsspec.implementations.asyn_wrapper import AsyncFileSystemWrapper
72
+
73
+ return AsyncFileSystemWrapper(fs, asynchronous=True)
74
75
76
class FsspecStore(Store):
0 commit comments