From f0bf6f855c3113704c62839c1fda03d543f9f4a2 Mon Sep 17 00:00:00 2001 From: sezanzeb Date: Sat, 5 Dec 2020 17:50:38 +0100 Subject: [PATCH] removed debug prints --- keymapper/dev/macros.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/keymapper/dev/macros.py b/keymapper/dev/macros.py index 6665afeb..d9f29c19 100644 --- a/keymapper/dev/macros.py +++ b/keymapper/dev/macros.py @@ -118,7 +118,6 @@ class _Macro: def press_key(self): """Tell all child macros that the key was pressed down.""" # TODO test - print(id(self), 'hold') self.holding = True for macro in self.child_macros: macro.press_key() @@ -126,7 +125,6 @@ class _Macro: def release_key(self): """Tell all child macros that the key was released.""" # TODO test - print(id(self), 'release') self.holding = False for macro in self.child_macros: macro.release_key()