From aec311d08713b1546787cad847e258c37da81a18 Mon Sep 17 00:00:00 2001 From: aatle <168398276+aatle@users.noreply.github.com> Date: Sun, 1 Dec 2024 13:12:12 -0800 Subject: [PATCH] Change Tuple[float, float] to Point in geometry.pyi --- buildconfig/stubs/pygame/geometry.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildconfig/stubs/pygame/geometry.pyi b/buildconfig/stubs/pygame/geometry.pyi index 7e3884f228..8821f15e35 100644 --- a/buildconfig/stubs/pygame/geometry.pyi +++ b/buildconfig/stubs/pygame/geometry.pyi @@ -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: ...