diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-11 18:03:11 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-11 18:03:11 +0200 |
commit | deb09e5c749e3353c927d7fe94bbd35f25ff85ee (patch) | |
tree | 702ba982530aa98a96ddece365a32be842dae3c2 /api/game/accept.py | |
parent | 28f104de9ae9abe4b42abafbf3865ede5687996c (diff) |
dprint yapf continuation align style edit
Diffstat (limited to 'api/game/accept.py')
-rw-r--r-- | api/game/accept.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/game/accept.py b/api/game/accept.py index a231d3a..5a09df2 100644 --- a/api/game/accept.py +++ b/api/game/accept.py @@ -18,7 +18,7 @@ join_game = Blueprint('game_accept', __name__) @auth_required("user") def index(game_id): if cursor.execute("select status from games where game_id = ?", - [game_id]).fetchone()[0] != "wait_for_opponent": + [game_id]).fetchone()[0] != "wait_for_opponent": return "", 403 start_game(game_id, user_id) |