We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1e82a4 commit 9c24348Copy full SHA for 9c24348
ishish.py
@@ -2,6 +2,7 @@
2
import traceback
3
from datetime import datetime
4
from html import escape
5
+from json import loads
6
7
import github
8
from aiohttp import web
@@ -158,7 +159,7 @@ async def fucku(event):
158
159
160
async def respond(request):
161
print(await request.text())
- result = await request.json()
162
+ result = loads(await request.text())
163
# await tgbot.start(bot_token=BOT_TOKEN)
164
# print(request.json)
165
d_form = "%d/%m/%y || %H:%M"
0 commit comments