You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseTypeError("Filesystem needs to support async operations.")
177
+
ifnotfs_map.fs.async_impl:
178
+
raiseNotImplementedError(
179
+
f"The filesystem '{fs_map.fs}' is synchronous and wrapping synchronous filesystems using from_mapper has not been implemented. See https://github.com/zarr-developers/zarr-python/issues/2706 for more details."
180
+
)
181
+
ifnotfs_map.fs.asynchronous:
182
+
raiseNotImplementedError(
183
+
f"The filesystem '{fs_map.fs}' is synchronous and conversion to an async instance has not been implemented. See https://github.com/zarr-developers/zarr-python/issues/2706 for more details."
0 commit comments