diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-02-22 14:49:40 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-02-22 14:49:40 +0100 |
commit | 06493b18dd57c8dbaf771a579488d720c7bcb460 (patch) | |
tree | 6db17c173ac14b72211bbdc2e4eb586cc1c367d3 | |
parent | 29bd2ef0ecf693c36ad4a9d330750b6ad3ecabb5 (diff) |
indentation
-rw-r--r-- | api/status.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/api/status.py b/api/status.py index a1b183a..6404a7f 100644 --- a/api/status.py +++ b/api/status.py @@ -6,9 +6,9 @@ status = Blueprint('status', __name__) @status.route('/status') def index(): return { - # "users": int, - "games": len(cursor.execute ("select game_id from games where status = \"in_progress\"").fetchall()) -} + # "users": int, + "games": len(cursor.execute ("select game_id from games where status = \"in_progress\"").fetchall()) + } dynamic_route = ["/", status] |