Skip to content

Commit 596b7e0

Browse files
authored
Merge branch 'main' into main
2 parents 7f9b913 + cf879eb commit 596b7e0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/zarr/core/array.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1711,7 +1711,9 @@ def _info(
17111711
# TODO: Array can be a frozen data class again once property setters (e.g. shape) are removed
17121712
@dataclass(frozen=False)
17131713
class Array:
1714-
"""Instantiate an array from an initialized store."""
1714+
"""
1715+
A Zarr array.
1716+
"""
17151717

17161718
_async_array: AsyncArray[ArrayV3Metadata] | AsyncArray[ArrayV2Metadata]
17171719

src/zarr/core/group.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1744,6 +1744,10 @@ async def move(self, source: str, dest: str) -> None:
17441744

17451745
@dataclass(frozen=True)
17461746
class Group(SyncMixin):
1747+
"""
1748+
A Zarr group.
1749+
"""
1750+
17471751
_async_group: AsyncGroup
17481752

17491753
@classmethod

0 commit comments

Comments
 (0)