From 0171d8a4b1e9274d82646579482b3a58cbe52a93 Mon Sep 17 00:00:00 2001 From: Mawoka Date: Sun, 25 Sep 2022 16:40:07 +0200 Subject: [PATCH] :bug: Added another option to live-API --- classquiz/routers/quiz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classquiz/routers/quiz.py b/classquiz/routers/quiz.py index 5919922..3d82447 100644 --- a/classquiz/routers/quiz.py +++ b/classquiz/routers/quiz.py @@ -264,7 +264,7 @@ class GetLiveDataResponse(BaseModel): players: _GetLiveDataPlayers -@router.get("/live", response_model=GetLiveDataResponse, tags=["live"]) +@router.get("/live", tags=["live"]) async def get_live_game_data( game_pin: int, api_key: str, player_count_as_a_string: bool = False, in_array: bool = False ):