Skip to content

Commit

Permalink
Fix typos in Scene add_* methods (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-dark authored Oct 3, 2024
1 parent c840b73 commit edd8ab2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python-spec/src/somacore/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def add_multiscale_image(
uri: str,
type: pa.DataType,
reference_level_shape: Sequence[int],
axis_names: Sequence[str] = ("c", "x", "y"),
axis_names: Sequence[str] = ("c", "y", "x"),
axis_types: Sequence[str] = ("channel", "height", "width"),
) -> _MultiscaleImage:
"""Adds a ``MultiscaleImage`` to the scene and sets a coordinate transform
Expand All @@ -169,7 +169,7 @@ def add_multiscale_image(
See :meth:`add_new_collection` for details about child URIs.
Args:
key: The name of the geometry dataframe.
key: The name of the multiscale image.
transform: The coordinate transformation from the scene to the dataframe.
subcollection: The name, or sequence of names, of the subcollection the
dataframe is stored in. Defaults to ``'obsl'``.
Expand Down Expand Up @@ -202,7 +202,7 @@ def add_new_point_cloud_dataframe(
See :meth:`add_new_collection` for details about child URIs.
Args:
key: The name of the geometry dataframe.
key: The name of the point cloud dataframe.
transform: The coordinate transformation from the scene to the dataframe.
subcollection: The name, or sequence of names, of the subcollection the
dataframe is stored in. Defaults to ``'obsl'``.
Expand Down

0 comments on commit edd8ab2

Please sign in to comment.