pyAutoGui: Correct Return Type of position() to Match Actual Behavior (#11267)

Co-authored-by: Avasam <samuel.06@hotmail.com>
This commit is contained in:
codekoriko
2024-12-30 08:11:14 +07:00
committed by GitHub
parent a2e4137f65
commit 5a10be14db

View File

@@ -60,8 +60,8 @@ def useImageNotFoundException(value: bool | None = None) -> None: ...
def isShiftCharacter(character: str) -> bool: ...
class Point(NamedTuple):
x: float
y: float
x: int
y: int
class Size(NamedTuple):
width: int