Skip to content

Commit

Permalink
Fix type annotation for ST_Rotate
Browse files Browse the repository at this point in the history
  • Loading branch information
Kontinuation committed Oct 25, 2024
1 parent 8d2c4cf commit cdbbb85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/sedona/sql/st_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2364,9 +2364,9 @@ def ST_RotateY(geometry: ColumnOrName, angle: Union[ColumnOrName, float]) -> Col
def ST_Rotate(
geometry: ColumnOrName,
angle: Union[ColumnOrName, float],
originX: Union[ColumnOrName, float] = None,
originY: Union[ColumnOrName, float] = None,
pointOrigin: ColumnOrName = None,
originX: Optional[Union[ColumnOrName, float]] = None,
originY: Optional[Union[ColumnOrName, float]] = None,
pointOrigin: Optional[ColumnOrName] = None,
) -> Column:
"""Return a counter-clockwise rotated geometry along the specified origin.
Expand Down

0 comments on commit cdbbb85

Please sign in to comment.