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 3ae719b commit d4d2256Copy full SHA for d4d2256
src/zarr/storage/_fsspec.py
@@ -68,10 +68,7 @@ def _make_async(fs: AbstractFileSystem) -> AsyncFileSystem:
68
"2024.12.0 or later to enable this functionality."
69
)
70
71
- if fsspec_version > parse_version("2025.2.0"):
72
- return fsspec.implementations.asyn_wrapper.AsyncFileSystemWrapper(fs, asynchronous=True)
73
- else:
74
- return fsspec.implementations.asyn_wrapper.AsyncFileSystemWrapper(fs)
+ return fsspec.implementations.asyn_wrapper.AsyncFileSystemWrapper(fs, asynchronous=True)
75
76
77
class FsspecStore(Store):
0 commit comments