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: 134277a0-e0b0-4927-b4b8-89f8a5271025/
This commit is contained in:
deepsource-autofix[bot] 2023-06-25 14:33:48 +00:00 committed by GitHub
parent 2b5daa78b7
commit 854f6ad08d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
)