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 3739713 commit 0432952Copy full SHA for 0432952
src/zarr/core/group.py
@@ -3261,7 +3261,7 @@ def _parse_hierarchy_dict(
3261
# but not if an empty dict was provided, because any empty hierarchy has no nodes
3262
if len(data_normed_keys) > 0 and "" not in data_normed_keys:
3263
z_format = next(iter(data_normed_keys.values())).zarr_format
3264
- data_normed_keys = data_normed_keys | {"": ImplicitGroupMarker(zarr_format=z_format)}
+ data_normed_keys |= {"": ImplicitGroupMarker(zarr_format=z_format)}
3265
3266
out: dict[str, GroupMetadata | ArrayV2Metadata | ArrayV3Metadata] = {**data_normed_keys}
3267
0 commit comments