From 3e89c5ce45879a89c02a27fed3e4ff18a8dcec0b Mon Sep 17 00:00:00 2001 From: Olli-Pekka Kahilakoski Date: Thu, 7 Oct 2021 14:45:04 +0300 Subject: [PATCH] Review comment: Remove printing to console when pedal state changes --- invesalius/net/pedal_connection.py | 2 -- 1 file changed, 0 insertions(+), 2 deletions(-) diff --git a/invesalius/net/pedal_connection.py b/invesalius/net/pedal_connection.py index 5b91300..ccabddc 100644 --- a/invesalius/net/pedal_connection.py +++ b/invesalius/net/pedal_connection.py @@ -48,11 +48,9 @@ class PedalConnection(Thread, metaclass=Singleton): # message types and be more stringent about the messages. # if msg.type == 'note_on': - print("Pedal pressed") state = True elif msg.type == 'note_off': - print("Pedal released") state = False else: -- libgit2 0.21.2