Use pass instead of print("") (#16)

I dont know if it helps in performance but the output is more clean
This commit is contained in:
Phil
2021-09-11 22:59:57 +02:00
committed by GitHub
parent 80feb5061b
commit 934b26c91d

View File

@@ -45,7 +45,7 @@ def sendString(line):
def parseLine(line):
if(line[0:3] == "REM"):
# ignore ducky script comments
print("")
pass
elif(line[0:5] == "DELAY"):
time.sleep(float(line[6:])/1000)
elif(line[0:6] == "STRING"):