aboutsummaryrefslogtreecommitdiff
path: root/api/status.py
diff options
context:
space:
mode:
Diffstat (limited to 'api/status.py')
-rw-r--r--api/status.py6
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]