From 91111b220b87736f79426015fca54a81d0a0c1e5 Mon Sep 17 00:00:00 2001 From: Kai Vogelgesang Date: Fri, 17 Apr 2020 00:44:05 +0200 Subject: [PATCH] Fix --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)