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 1853231 commit 1772c89Copy full SHA for 1772c89
src/zarr/storage/_fsspec.py
@@ -62,8 +62,9 @@ def _make_async(fs: AbstractFileSystem) -> AsyncFileSystem:
62
"AsyncFileSystemWrapper is not available. Upgrade fsspec to version "
63
"2024.12.0 or later to enable this functionality."
64
)
65
+ from fsspec.implementations.asyn_wrapper import AsyncFileSystemWrapper
66
- return fsspec.implementations.asyn_wrapper.AsyncFileSystemWrapper(fs, asynchronous=True)
67
+ return AsyncFileSystemWrapper(fs, asynchronous=True)
68
69
70
class FsspecStore(Store):
0 commit comments