From 5a4a0fbb0db7ce00602413c5df43e84ed3f9d118 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Wed, 17 May 2023 17:24:57 -0700 Subject: [PATCH] Remove extra print from usbguard-notify.py --- usbguard-notify.py | 1 - 1 file changed, 1 deletion(-) diff --git a/usbguard-notify.py b/usbguard-notify.py index 5a7575b..ece0101 100755 --- a/usbguard-notify.py +++ b/usbguard-notify.py @@ -61,7 +61,6 @@ def prompt_device_action(dev_id, name, long_id): 'New Device'], stdout=PIPE, text=True, bufsize=0) open_notifications[dev_id] = int(proc.stdout.readline()) - print(str(open_notifications[dev_id])) option = int(proc.communicate()[0]) try: open_notifications.pop(dev_id)