From 3afee727f52e4e72ae41a21758544fa92bc584a0 Mon Sep 17 00:00:00 2001 From: dbarzin Date: Thu, 30 Jun 2022 10:33:27 +0200 Subject: [PATCH] work in progress --- tests/mouse-click.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mouse-click.py b/tests/mouse-click.py index a321009..9edbff2 100755 --- a/tests/mouse-click.py +++ b/tests/mouse-click.py @@ -6,7 +6,7 @@ def waitMouseClick(): buf = mouse.read(3) if ((buf[0] & 0x1)==1): break; - close(mouse) + mouse.close() waitMouseClick()