stop pycharm from complaining :)

This commit is contained in:
Stefan Harmuth 2020-12-01 08:41:32 +01:00
parent b5d4852d82
commit a0408e9873
3 changed files with 2 additions and 6 deletions

View File

@ -1,6 +1,6 @@
import aoclib
#my_input = [1721, 979, 366, 299, 675, 1456] # debug input
# my_input = [1721, 979, 366, 299, 675, 1456] # debug input
my_input = aoclib.getInputLineAsArray(1, int)
globalBreak = False
@ -14,4 +14,3 @@ while len(my_input) > 0:
if globalBreak:
break

View File

@ -1,7 +1,6 @@
import aoclib
import sys
#my_input = [1721, 979, 366, 299, 675, 1456] # debug input
# my_input = [1721, 979, 366, 299, 675, 1456] # debug input
my_input = aoclib.getInputLineAsArray(1, int)
globalBreak = False
@ -21,4 +20,3 @@ while len(my_input) > 0:
if globalBreak:
break

View File

@ -7,4 +7,3 @@ for _, _, files in os.walk(aoclib.BASE_PATH):
exec(open(f).read())
break