Skip to content

Commit 9b97c95

Browse files
committed
docstrings
1 parent 6ab8339 commit 9b97c95

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/zarr/core/group.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3451,7 +3451,21 @@ async def read_node(
34513451
) -> AsyncArray[ArrayV2Metadata] | AsyncArray[ArrayV3Metadata] | AsyncGroup:
34523452
"""
34533453
Read an AsyncArray or AsyncGroup from a path in a Store.
3454+
3455+
Parameters
3456+
----------
3457+
store : Store
3458+
The store-like object to read from.
3459+
path : str
3460+
The path to the node to read.
3461+
zarr_format : {2, 3}
3462+
The zarr format of the node to read.
3463+
3464+
Returns
3465+
-------
3466+
AsyncArray | AsyncGroup
34543467
"""
3468+
34553469
match zarr_format:
34563470
case 2:
34573471
return await _read_node_v2(store=store, path=path)

0 commit comments

Comments
 (0)