Skip to content

Commit de2ded9

Browse files
authored
Follow on: referenceFS's target to have same async (#1795)
1 parent 671ff26 commit de2ded9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fsspec/implementations/reference.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ def __init__(
765765
# Wrap any non-async filesystems to ensure async methods are available below
766766
for k, f in self.fss.items():
767767
if not f.async_impl:
768-
self.fss[k] = AsyncFileSystemWrapper(f)
768+
self.fss[k] = AsyncFileSystemWrapper(f, asynchronous=self.asynchronous)
769769
elif self.asynchronous ^ f.asynchronous:
770770
raise ValueError(
771771
"Reference-FS's target filesystem must have same value"

0 commit comments

Comments
 (0)