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 9bbfd88 commit d78d177Copy full SHA for d78d177
src/zarr/core/group.py
@@ -1139,7 +1139,8 @@ async def _members(
1139
raise ValueError(msg)
1140
# would be nice to make these special keys accessible programmatically,
1141
# and scoped to specific zarr versions
1142
- _skip_keys = ("zarr.json", ".zgroup", ".zattrs")
+ # especially true for `.zmetadata` which is configurable
1143
+ _skip_keys = ("zarr.json", ".zgroup", ".zattrs", ".zmetadata")
1144
1145
# hmm lots of I/O and logic interleaved here.
1146
# We *could* have an async gen over self.metadata.consolidated_metadata.metadata.keys()
0 commit comments