Rename get_topset function

This commit is contained in:
Peter Stockings
2022-11-19 20:36:03 +11:00
parent a1fa9557ea
commit ab08c19e6a
2 changed files with 2 additions and 2 deletions

2
app.py
View File

@@ -66,7 +66,7 @@ def get_topset(person_id, workout_id, topset_id):
return redirect(url_for('get_workout', person_id=person_id, workout_id=workout_id))
topset = db.get_topset_final(person_id, workout_id, topset_id)
topset = db.get_topset(person_id, workout_id, topset_id)
return render_template('topset.html', topset=topset)