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 7c14132 commit a75b035Copy full SHA for a75b035
src/zarr/core/group.py
@@ -3238,7 +3238,7 @@ def _parse_hierarchy_dict(
3238
# but not if an empty dict was provided, because any empty hierarchy has no nodes
3239
if len(data_normed_keys) > 0 and "" not in data_normed_keys:
3240
z_format = next(iter(data_normed_keys.values())).zarr_format
3241
- data_normed_keys = data_normed_keys | {"": ImplicitGroupMarker(zarr_format=z_format)}
+ data_normed_keys |= {"": ImplicitGroupMarker(zarr_format=z_format)}
3242
3243
out: dict[str, GroupMetadata | ArrayV2Metadata | ArrayV3Metadata] = {**data_normed_keys}
3244
0 commit comments