Debug power reporting

This commit is contained in:
Loïc Guégan 2024-04-09 14:18:05 +02:00
parent 57b6888bca
commit 963e0e8381

View file

@ -58,7 +58,13 @@ while True:
elif linum > 1:
if unique:
split=line.split(",")
if lastPower != "" and split[2] != lastPower:
if lastPower != "":
if split[2] != lastPower:
print(line)
finalLinePrinted=True
else:
finalLinePrinted=False
else:
print(line)
finalLine=line
lastPower=split[2]