Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
itzpr3d4t0r committed Dec 16, 2024
1 parent be08e0b commit 6d10647
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions buildconfig/stubs/pygame/geometry.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,13 @@ class Line:
@center.setter
def center(self, value: Point) -> None: ...
@property
def centerx(self) -> tuple[float, float]: ...
def centerx(self) -> float: ...
@centerx.setter
def centerx(self, value: Point) -> None: ...
def centerx(self, value: float) -> None: ...
@property
def centery(self) -> tuple[float, float]: ...
def centery(self) -> float: ...
@centery.setter
def centery(self, value: Point) -> None: ...
def centery(self, value: float) -> None: ...
@property
def slope(self) -> float: ...
@property
Expand Down

0 comments on commit 6d10647

Please sign in to comment.