Skip to content

Commit b1459e0

Browse files
committed
typing
1 parent d0adf8c commit b1459e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tapper/controller/mouse/mouse_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def move(
158158
if x_or_xy is not None and isinstance(x_or_xy, tuple):
159159
x, y = x_or_xy
160160
else:
161-
x, y = x_or_xy, y
161+
x = x_or_xy # type: ignore
162162
self._commander.move(x, y, relative)
163163

164164
def memorize_pos(self) -> None:

0 commit comments

Comments
 (0)