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 5968fc7 commit fc905feCopy full SHA for fc905fe
src/zarr/storage/_fsspec.py
@@ -298,7 +298,7 @@ async def delete_dir(self, prefix: str) -> None:
298
path_to_delete = _dereference_path(self.path, prefix)
299
300
with suppress(*self.allowed_exceptions):
301
- await self.fs._rm(path_to_delete, recursive=True)
+ await self.fs._rm(path_to_delete + "/", recursive=True)
302
303
async def exists(self, key: str) -> bool:
304
# docstring inherited
0 commit comments