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 599d5ad commit edf6dcaCopy full SHA for edf6dca
src/zarr/core/group.py
@@ -3250,7 +3250,7 @@ def _parse_hierarchy_dict(
3250
# but not if an empty dict was provided, because any empty hierarchy has no nodes
3251
if len(data_normed_keys) > 0 and "" not in data_normed_keys:
3252
z_format = next(iter(data_normed_keys.values())).zarr_format
3253
- data_normed_keys = data_normed_keys | {"": ImplicitGroupMarker(zarr_format=z_format)}
+ data_normed_keys |= {"": ImplicitGroupMarker(zarr_format=z_format)}
3254
3255
out: dict[str, GroupMetadata | ArrayV2Metadata | ArrayV3Metadata] = {**data_normed_keys}
3256
0 commit comments