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 57ceb64 commit 181d3d0Copy full SHA for 181d3d0
src/zarr/core/group.py
@@ -2851,7 +2851,7 @@ async def create_hierarchy(
2851
AsyncGroup | AsyncArray
2852
The created nodes in the order they are created.
2853
"""
2854
- nodes_parsed = parse_hierarchy_dict(nodes)
+ nodes_parsed = _parse_hierarchy_dict(nodes)
2855
async for node in create_nodes(store_path=store_path, nodes=nodes_parsed, semaphore=semaphore):
2856
yield node
2857
@@ -2888,7 +2888,7 @@ async def create_nodes(
2888
T = TypeVar("T")
2889
2890
2891
-def parse_hierarchy_dict(
+def _parse_hierarchy_dict(
2892
data: Mapping[str, GroupMetadata | ArrayV2Metadata | ArrayV3Metadata],
2893
) -> dict[str, GroupMetadata | ArrayV2Metadata | ArrayV3Metadata]:
2894
0 commit comments