Skip to content

Commit 5a10be1

Browse files
codekorikoAvasam
andauthored
pyAutoGui: Correct Return Type of position() to Match Actual Behavior (#11267)
Co-authored-by: Avasam <samuel.06@hotmail.com>
1 parent a2e4137 commit 5a10be1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stubs/PyAutoGUI/pyautogui/__init__.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ def useImageNotFoundException(value: bool | None = None) -> None: ...
6060
def isShiftCharacter(character: str) -> bool: ...
6161

6262
class Point(NamedTuple):
63-
x: float
64-
y: float
63+
x: int
64+
y: int
6565

6666
class Size(NamedTuple):
6767
width: int

0 commit comments

Comments
 (0)