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 d9f7aef commit 965f962Copy full SHA for 965f962
src/zarr/storage/_fsspec.py
@@ -45,7 +45,6 @@ def _make_async(fs: AbstractFileSystem) -> AsyncFileSystem:
45
is wrapped with AsyncFileSystemWrapper.
46
"""
47
import fsspec
48
- import fsspec.implementations.asyn_wrapper
49
50
fsspec_version = parse_version(fsspec.__version__)
51
if fs.async_impl and fs.asynchronous:
@@ -69,6 +68,7 @@ def _make_async(fs: AbstractFileSystem) -> AsyncFileSystem:
69
68
"2024.12.0 or later to enable this functionality."
70
)
71
+ import fsspec.implementations.asyn_wrapper
72
return fsspec.implementations.asyn_wrapper.AsyncFileSystemWrapper(fs, asynchronous=True)
73
74
0 commit comments