We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e87520 commit 7aadbd9Copy full SHA for 7aadbd9
main
@@ -55,6 +55,9 @@ def parseargv(): #parses argv, returns StopID and LineID
55
query_stop = int(elem)
56
elif (1 <= len(elem) <= 3 and elem.isdigit()):
57
query_ids.append(elem)
58
+ elif elem == 'debug':
59
+ global DEBUG
60
+ DEBUG=True
61
else:
62
print("What's this?: {}".format(elem))
63
query_ids.sort(key=int)
0 commit comments