summaryrefslogtreecommitdiff
path: root/src/match_up/routes.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/match_up/routes.py')
-rw-r--r--src/match_up/routes.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/match_up/routes.py b/src/match_up/routes.py
index f9cd2fa..e5a3b99 100644
--- a/src/match_up/routes.py
+++ b/src/match_up/routes.py
@@ -19,7 +19,9 @@ def get_controls():
def get_random_games():
levels = int(request.form["levels"].split()[0])
team_practice = request.form["team"] == "Teams"
- return render_template("games.j2", games=_rg.propose(levels, team_practice), title="Proposal")
+ return render_template(
+ "games.j2", games=_rg.propose(levels, team_practice), title="Proposal"
+ )
@_app.route("/confirm", methods=["POST"])