8000
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 2998561 commit b9699f5Copy full SHA for b9699f5
src/zarr/storage/local.py
@@ -189,6 +189,18 @@ async def set_partial_values(
189
await concurrent_map(args, asyncio.to_thread, limit=None) # TODO: fix limit
190
191
async def delete(self, key: str) -> None:
192
+ """
193
+ Remove a key from the store.
194
+
195
+ Parameters
196
+ ----------
197
+ key : str
198
199
+ Notes
200
+ -----
201
+ If ``key`` is a directory within this store, the entire directory
202
+ at ``store.root / key`` is deleted.
203
204
# docstring inherited
205
self._check_writable()
206
path = self.root / key
0 commit comments