Skip to content

Commit

Permalink
Add docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
dstansby committed Dec 1, 2024
1 parent 968f1bd commit 2e6cc7b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/ome_zarr_models/v04/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Image is imported to the `ome_zarr_py.v04` namespace, so not
# listed here
__all__ = ["ImageAttrs", "Image"]
__all__ = ["Image", "ImageAttrs"]


def _check_arrays_compatible(data: Image) -> Image:
Expand Down Expand Up @@ -85,7 +85,12 @@ class _ImageSpec(GroupSpec[ImageAttrs, ArraySpec | GroupSpec]):

class Image:
"""
An OME-zarr multiscale dataset.
A multiscale zarr group.
Parameters
----------
group :
Group to create object from.
"""

def __init__(self, group: zarr.Group) -> None:
Expand Down

0 comments on commit 2e6cc7b

Please sign in to comment.