Further cleanup

This commit is contained in:
Mawoka
2025-11-01 15:57:10 +01:00
parent abd2155469
commit 02c917a28f
16 changed files with 215 additions and 336 deletions
+3 -3
View File
@@ -6,12 +6,12 @@
from aiohttp import ClientSession
from pydantic import BaseModel
from classquiz.kahoot_importer import _Card, _Kahoot
from classquiz.kahoot_importer import Card, Kahoot
class _Response(BaseModel):
card: _Card
kahoot: _Kahoot
card: Card
kahoot: Kahoot
async def get(game_id: str) -> _Response | int: