-
-
Notifications
You must be signed in to change notification settings - Fork 361
Closed
Labels
bugPotential issues with the zarr-python libraryPotential issues with the zarr-python library
Milestone
Description
Zarr version
3
Numcodecs version
?
Python Version
?
Operating System
?
Installation
?
Description
deleting a group does not delete subgroups.
Discovered in #2189
Steps to reproduce
import zarr
from zarr.store import MemoryStore
store = MemoryStore(mode="w")
g1 = zarr.group(store=store)
g1.create_group("0")
g1.create_group("0/0")
del g1["0"]
g1["0/0"] # succeeds
Additional output
No response
Metadata
Metadata
Assignees
Labels
bugPotential issues with the zarr-python libraryPotential issues with the zarr-python library
Type
Projects
Status
Done