Skip to content

Commit

Permalink
Fix type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-dark committed Sep 26, 2024
1 parent 2d38625 commit d7a0fec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python-spec/src/somacore/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def set_transform_to_point_cloud(
@abc.abstractmethod
def get_transform_from_geometry_dataframe(
self, key: str, *, subcollection: Union[str, Sequence[str]] = "obsl"
):
) -> coordinates.CoordinateTransform:
"""Returns the coordinate transformation from the requested geometry dataframe
to the scene.
Expand Down Expand Up @@ -382,7 +382,7 @@ def get_transform_from_point_cloud(
@abc.abstractmethod
def get_transform_to_geometry_dataframe(
self, key: str, *, subcollection: Union[str, Sequence[str]] = "obsl"
):
) -> coordinates.CoordinateTransform:
"""Returns the coordinate transformation from the scene to a requested
geometery dataframe.
Expand Down

0 comments on commit d7a0fec

Please sign in to comment.