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 781c70a commit 2e8dc0fCopy full SHA for 2e8dc0f
src/zarr/core/group.py
@@ -3185,7 +3185,7 @@ def _parse_hierarchy_dict(
3185
# but not if an empty dict was provided, because any empty hierarchy has no nodes
3186
if len(data_normed_keys) > 0 and "" not in data_normed_keys:
3187
z_format = next(iter(data_normed_keys.values())).zarr_format
3188
- data_normed_keys = data_normed_keys | {"": ImplicitGroupMarker(zarr_format=z_format)}
+ data_normed_keys |= {"": ImplicitGroupMarker(zarr_format=z_format)}
3189
3190
out: dict[str, GroupMetadata | ArrayV2Metadata | ArrayV3Metadata] = {**data_normed_keys}
3191
0 commit comments