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 220c28b commit ece0f0eCopy full SHA for ece0f0e
src/zarr/storage/_fsspec.py
@@ -275,7 +275,7 @@ async def delete_dir(self, prefix: str) -> None:
275
276
# this is probably the same condition as `if self.fs.async_impl`
277
if hasattr(self.fs, "_rm") and inspect.iscoroutinefunction(self.fs._rm):
278
- with suppress(self.allowed_exceptions):
+ with suppress(*self.allowed_exceptions):
279
await self.fs._rm(path_to_delete, recursive=True)
280
else:
281
raise NotImplementedError("The store does not support async deletes")
0 commit comments