mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-21 02:34:51 +00:00
style: format code with black
Format code with black This commit fixes the style issues introduced in2b5daa7
according to the output from Black. Details:134277a0
-e0b0-4927-b4b8-89f8a5271025/
This commit is contained in:
parent
2b5daa78b7
commit
854f6ad08d
1 changed files with 6 additions and 1 deletions
|
@ -49,7 +49,12 @@ def index():
|
||||||
scores = scores.order_by(Scores.score.asc()).limit(MAX_TOP_SCORES).all()
|
scores = scores.order_by(Scores.score.asc()).limit(MAX_TOP_SCORES).all()
|
||||||
|
|
||||||
return render_template(
|
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,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue