Skip to content

Commit d7a6982

Browse files
committed
fixup
1 parent 939fb53 commit d7a6982

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/abc/store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ async def delete_dir(self, prefix: str, recursive: bool = True) -> None:
384384
if not prefix.endswith("/"):
385385
prefix += "/"
386386
async for key in self.list_prefix(prefix):
387-
await self.delete(f"{key}")
387+
await self.delete(key)
388388
else:
389389
async for key in self.list_dir(prefix):
390390
await self.delete(f"{prefix}/{key}")

0 commit comments

Comments
 (0)