Skip to content

Commit

Permalink
Fix bonehead runtime error
Browse files Browse the repository at this point in the history
  • Loading branch information
Xynth22 committed Jan 19, 2020
1 parent 3e48871 commit 53d684d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabataGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def startupTimer():

exerciseList = []

def getExercise() #ensure no duplicates, TODO add logic to balance leg/core/arms
def getExercise(): #ensure no duplicates, TODO add logic to balance leg/core/arms
i = randint(0,len(exercises)-1)
while (i in exerciseList):
i = randint(0,len(exercises)-1)
Expand Down

0 comments on commit 53d684d

Please sign in to comment.