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 baabf08 commit 49c3955Copy full SHA for 49c3955
src/zarr/storage/_fsspec.py
@@ -56,11 +56,6 @@ def _make_async(fs: AbstractFileSystem) -> AsyncFileSystem:
56
fs_dict["asynchronous"] = True
57
return fsspec.AbstractFileSystem.from_json(json.dumps(fs_dict))
58
59
- # Wrap sync filesystems with the async wrapper
60
- if type(fs) is fsspec.implementations.local.LocalFileSystem and not fs.auto_mkdir:
61
- raise ValueError(
62
- f"LocalFilesystem {fs} was created with auto_mkdir=False but Zarr requires the filesystem to automatically create directories"
63
- )
64
if fsspec_version < parse_version("2024.12.0"):
65
raise ImportError(
66
f"The filesystem '{fs}' is synchronous, and the required "
0 commit comments