Skip to content

Commit 5dc25b5

Browse files
committed
remove extra print
1 parent 469e685 commit 5dc25b5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

find_arduino.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ def check_ports():
99
port,hwid,desc = connection
1010
vid_pid = re.search(r"(?<=VID\:PID\=)[0-9|A-Z|a-z]{4}\:[0-9|A-Z|a-z]{4}", desc)
1111
vid_pid = None if vid_pid is None else vid_pid.group()
12-
print(vid_pid)
1312
if vid_pid is None:
1413
not_arduinos.append(connection)
1514
else:
@@ -25,4 +24,4 @@ def check_ports():
2524
for ard in arduinos:
2625
print(ard)
2726
for nard in not_arduinos:
28-
print(nard)
27+
print(nard)

0 commit comments

Comments
 (0)