Skip to content

Commit 68808a8

Browse files
committed
Fix CI
1 parent 575ef3f commit 68808a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

buildconfig/stubs/pygame/mouse.pyi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def get_pressed(
8383
def get_pressed(
8484
num_buttons: Literal[5], desktop: bool = False
8585
) -> tuple[bool, bool, bool, bool, bool]: ...
86-
def get_pressed(*args, **kwargs) -> Any:
86+
def get_pressed(*args, **kwargs) -> Any: # type: ignore
8787
"""Get the state of the mouse buttons.
8888
8989
Returns a sequence of booleans representing the state of all the mouse
@@ -191,7 +191,7 @@ def get_rel() -> tuple[int, int]:
191191
def set_pos(pos: Point, /) -> None: ...
192192
@overload
193193
def set_pos(x: float, y: float, /) -> None: ...
194-
def set_pos(*args) -> None:
194+
def set_pos(*args) -> None: # type: ignore
195195
"""Set the mouse cursor position.
196196
197197
Set the current mouse position to arguments given. If the mouse cursor is
@@ -243,7 +243,7 @@ def set_cursor(
243243
def set_cursor(hotspot: IntPoint, surface: Surface) -> None: ...
244244
@overload
245245
def set_cursor(constant: int) -> None: ...
246-
def set_cursor(*args, **kwargs) -> None:
246+
def set_cursor(*args, **kwargs) -> None: # type: ignore
247247
"""Set the mouse cursor to a new cursor.
248248
249249
Set the mouse cursor to something new. This function accepts either an explicit

0 commit comments

Comments
 (0)