Skip to content
Snippets Groups Projects
Commit c52da716 authored by Joshua Randall's avatar Joshua Randall
Browse files

fixed math error for printRuns()

parent 30646396
No related branches found
No related tags found
No related merge requests found
......@@ -241,7 +241,7 @@ def printRuns():
else:
minusPointStr = ""
if pointsForRun[index][j] > defaults[index][j]:
addPointStr = " +" + str(defaults[index][j] + pointsForRun[index][j])
addPointStr = " +" + str(pointsForRun[index][j] - defaults[index][j])
else:
addPointStr = ""
print("Run " + str(count) + ": " + f'{Fore.yellow}' + str(point) + f'{Fore.deep_pink_3b}' + minusPointStr + f'{Fore.light_green}' + addPointStr + f'{Style.reset}')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment