We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3
?
deleting a group does not delete subgroups.
Discovered in #2189
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
No response
The text was updated successfully, but these errors were encountered:
Looks like the MemoryStore implementation is missing a erase_prefix function to allow proper deletion of a group and its children.
MemoryStore
erase_prefix
Sorry, something went wrong.
I have a fix for this in the works.
Successfully merging a pull request may close this issue.
Zarr version
3
Numcodecs version
?
Python Version
?
Operating System
?
Installation
?
Description
deleting a group does not delete subgroups.
Discovered in #2189
Steps to reproduce
Additional output
No response
The text was updated successfully, but these errors were encountered: