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.
_fsspec.py
1 parent e0999b2 commit a3b97acCopy full SHA for a3b97ac
src/zarr/storage/_fsspec.py
@@ -68,9 +68,9 @@ def _make_async(fs: AbstractFileSystem) -> AsyncFileSystem:
68
"2024.12.0 or later to enable this functionality."
69
)
70
71
- import fsspec.implementations.asyn_wrapper
+ from fsspec.implementations.asyn_wrapper import AsyncFileSystemWrapper
72
73
- return fsspec.implementations.asyn_wrapper.AsyncFileSystemWrapper(fs, asynchronous=True)
+ return AsyncFileSystemWrapper(fs, asynchronous=True)
74
75
76
class FsspecStore(Store):
0 commit comments