From a08c933730a4263bb4193c4d8a8ad102cd433cbe Mon Sep 17 00:00:00 2001 From: gsd Date: Sat, 15 Nov 2025 22:38:51 +0300 Subject: [PATCH] fix --- pipboyIO/serialX.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipboyIO/serialX.py b/pipboyIO/serialX.py index a7117bb..1133048 100644 --- a/pipboyIO/serialX.py +++ b/pipboyIO/serialX.py @@ -14,7 +14,7 @@ class ENTER: def __init__(self): self.pin = 1001 self.enter = "xdotool key Return".split() - def __call__(self): + def __call__(self, data): print(self.enter) subprocess.Popen(self.enter)