We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0304c3 commit 0c9abbcCopy full SHA for 0c9abbc
obd/utils.py
@@ -174,7 +174,7 @@ def scan_serial():
174
possible_ports += glob.glob("/dev/ttyUSB[0-9]*")
175
176
elif sys.platform.startswith('win'):
177
- possible_ports += ["\\.\COM%d" % i for i in range(256)]
+ possible_ports += [r"\\.\COM%d" % i for i in range(256)]
178
179
elif sys.platform.startswith('darwin'):
180
exclude = [
0 commit comments