diff --git a/server/server.py b/server/server.py index 7578301..d96ad86 100644 --- a/server/server.py +++ b/server/server.py @@ -19,7 +19,7 @@ async def lifespan(app: FastAPI): async with aiohttp.ClientSession() as app.state.session: app.state.states = {} - app.state.guild_data = Dict[int, dict] = {} + app.state.guild_data: Dict[int, dict] = {} # just easier to create the stats does not need to be awaited. yield # probaly closes when it is done. print("clean aiohttp session")