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 18bc6f7 commit ab52b8cCopy full SHA for ab52b8c
src/zarr/storage/remote.py
@@ -3,6 +3,7 @@
3
import warnings
4
from typing import TYPE_CHECKING, Any
5
6
+from fsspec.implementations.asyn_wrapper import AsyncFileSystemWrapper
7
from zarr.abc.store import ByteRangeRequest, Store
8
from zarr.storage.common import _dereference_path
9
@@ -167,7 +168,6 @@ def from_url(
167
168
169
fs, path = url_to_fs(url, **opts)
170
if not fs.async_impl:
- from fsspec.implementations.asyn_wrapper import AsyncFileSystemWrapper
171
fs = AsyncFileSystemWrapper(fs)
172
173
# fsspec is not consistent about removing the scheme from the path, so check and strip it here
0 commit comments