Skip to content

Commit eb6b2d8

Browse files
committed
add asynchronous=true kwarg to AsyncFileSystemWrapper
1 parent 21a0c6a commit eb6b2d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/storage/_fsspec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def from_url(
178178
try:
179179
from fsspec.implementations.asyn_wrapper import AsyncFileSystemWrapper
180180

181-
fs = AsyncFileSystemWrapper(fs)
181+
fs = AsyncFileSystemWrapper(fs, asynchronous=True)
182182
except ImportError as e:
183183
raise ImportError(
184184
f"The filesystem for URL '{url}' is synchronous, and the required "

0 commit comments

Comments
 (0)