Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/zarr/core/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -1711,7 +1711,9 @@ def _info(
# TODO: Array can be a frozen data class again once property setters (e.g. shape) are removed
@dataclass(frozen=False)
class Array:
"""Instantiate an array from an initialized store."""
"""
A Zarr array.
"""

_async_array: AsyncArray[ArrayV3Metadata] | AsyncArray[ArrayV2Metadata]

Expand Down
4 changes: 4 additions & 0 deletions src/zarr/core/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -1744,6 +1744,10 @@ async def move(self, source: str, dest: str) -> None:

@dataclass(frozen=True)
class Group(SyncMixin):
"""
A Zarr group.
"""

_async_group: AsyncGroup

@classmethod
Expand Down