diff --git a/main.py b/main.py index ac1c83f..9e52b02 100644 --- a/main.py +++ b/main.py @@ -51,7 +51,7 @@ async def handler(request: aiohttp.web.Request): print(f'{client=} {data=}') try: - assert await model.handle_post(data, client) + assert await model.handle_post(client, data) return aiohttp.web.Response(status=200) except Exception as e: print(e)