From ed36fca4a2d71537865328dc4c30b10416cbebf2 Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Wed, 16 Feb 2022 10:10:32 -0800 Subject: [PATCH] remove testing prints --- meshtastic/util.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/meshtastic/util.py b/meshtastic/util.py index 3e8a68c..21258f1 100644 --- a/meshtastic/util.py +++ b/meshtastic/util.py @@ -401,13 +401,11 @@ def eliminate_duplicate_port(ports): if 'usbserial' in ports[0] and 'wchusbserial' in ports[1]: first = ports[0].replace("usbserial-", "") second = ports[1].replace("wchusbserial", "") - print(f'first:{first} second:{second}') if first == second: new_ports.append(ports[1]) elif 'usbmodem' in ports[0] and 'wchusbserial' in ports[1]: first = ports[0].replace("usbmodem", "") second = ports[1].replace("wchusbserial", "") - print(f'first:{first} second:{second}') if first == second: new_ports.append(ports[1]) elif 'SLAB_USBtoUART' in ports[0] and 'usbserial' in ports[1]: