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 04b12d3 commit 20d8392Copy full SHA for 20d8392
src/zarr/storage/remote.py
@@ -131,16 +131,7 @@ def from_url(
131
-------
132
RemoteStore
133
"""
134
- opts = storage_options or {}
135
- opts = {"asynchronous": True, **opts}
136
-
137
- fs, path = fsspec.url_to_fs(url, **opts)
138
139
- # fsspec is not consistent about removing the scheme from the path, so check and strip it here
140
- # https://github.com/fsspec/filesystem_spec/issues/1722
141
- if "://" in path:
142
- _, path = path.split("://", maxsplit=1)
143
+ fs, path = fsspec.url_to_fs(url, **storage_options)
144
return cls(fs=fs, path=path, mode=mode, allowed_exceptions=allowed_exceptions)
145
146
async def clear(self) -> None:
0 commit comments