From 854f6ad08d18b8d0ee75ee4fef3ad7ad4db50161 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sun, 25 Jun 2023 14:33:48 +0000 Subject: [PATCH] style: format code with black Format code with black This commit fixes the style issues introduced in 2b5daa7 according to the output from Black. Details: https://app.deepsource.com/gh/Fluffy-Bean/GameExpo23/transform/134277a0-e0b0-4927-b4b8-89f8a5271025/ --- TFR/server/views.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/TFR/server/views.py b/TFR/server/views.py index ab10260..00d65bb 100644 --- a/TFR/server/views.py +++ b/TFR/server/views.py @@ -49,7 +49,12 @@ def index(): scores = scores.order_by(Scores.score.asc()).limit(MAX_TOP_SCORES).all() return render_template( - "views/scores.html", scores=scores, diff=int(diff_arg), ver=ver_arg, user=user, tags=tags + "views/scores.html", + scores=scores, + diff=int(diff_arg), + ver=ver_arg, + user=user, + tags=tags, )