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 8d12eff commit 2a045ceCopy full SHA for 2a045ce
src/zarr/core/group.py
@@ -3422,7 +3422,7 @@ def _parse_hierarchy_dict(
3422
# but not if an empty dict was provided, because any empty hierarchy has no nodes
3423
if len(data_normed_keys) > 0 and "" not in data_normed_keys:
3424
z_format = next(iter(data_normed_keys.values())).zarr_format
3425
- data_normed_keys = data_normed_keys | {"": ImplicitGroupMarker(zarr_format=z_format)}
+ data_normed_keys |= {"": ImplicitGroupMarker(zarr_format=z_format)}
3426
3427
out: dict[str, GroupMetadata | ArrayV2Metadata | ArrayV3Metadata] = {**data_normed_keys}
3428
0 commit comments