@@ -83,7 +83,7 @@ def get_pressed(
83
83
def get_pressed (
84
84
num_buttons : Literal [5 ], desktop : bool = False
85
85
) -> tuple [bool , bool , bool , bool , bool ]: ...
86
- def get_pressed (* args , ** kwargs ) -> Any :
86
+ def get_pressed (* args , ** kwargs ) -> Any : # type: ignore
87
87
"""Get the state of the mouse buttons.
88
88
89
89
Returns a sequence of booleans representing the state of all the mouse
@@ -191,7 +191,7 @@ def get_rel() -> tuple[int, int]:
191
191
def set_pos (pos : Point , / ) -> None : ...
192
192
@overload
193
193
def set_pos (x : float , y : float , / ) -> None : ...
194
- def set_pos (* args ) -> None :
194
+ def set_pos (* args ) -> None : # type: ignore
195
195
"""Set the mouse cursor position.
196
196
197
197
Set the current mouse position to arguments given. If the mouse cursor is
@@ -243,7 +243,7 @@ def set_cursor(
243
243
def set_cursor (hotspot : IntPoint , surface : Surface ) -> None : ...
244
244
@overload
245
245
def set_cursor (constant : int ) -> None : ...
246
- def set_cursor (* args , ** kwargs ) -> None :
246
+ def set_cursor (* args , ** kwargs ) -> None : # type: ignore
247
247
"""Set the mouse cursor to a new cursor.
248
248
249
249
Set the mouse cursor to something new. This function accepts either an explicit
0 commit comments