Skip to content

Commit

Permalink
Change Tuple[float, float] to Point in geometry.pyi
Browse files Browse the repository at this point in the history
  • Loading branch information
aatle committed Dec 1, 2024
1 parent b77bf55 commit aec311d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildconfig/stubs/pygame/geometry.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,10 @@ class Line:
@overload
def scale(self, factor: float, origin: float, /) -> Line: ...
@overload
def scale(self, factor_and_origin: Tuple[float, float], /) -> Line: ...
def scale(self, factor_and_origin: Point, /) -> Line: ...
@overload
def scale_ip(self, factor: float, origin: float, /) -> None: ...
@overload
def scale_ip(self, factor_and_origin: Tuple[float, float], /) -> None: ...
def scale_ip(self, factor_and_origin: Point, /) -> None: ...
def flip_ab(self) -> Line: ...
def flip_ab_ip(self) -> None: ...

0 comments on commit aec311d

Please sign in to comment.