summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyomotoi <[email protected]>2021-10-01 14:44:42 +0800
committerGitHub <[email protected]>2021-10-01 14:44:42 +0800
commit906aafadd9f9db8ee52104fdfcb668f655387cb0 (patch)
treec61d040d6e91ed9dda1e02721d162926f02918d2
parentc2e754b5456c454ed6bb08a9a525a40ef16e6ec4 (diff)
downloadATRI-906aafadd9f9db8ee52104fdfcb668f655387cb0.tar.gz
ATRI-906aafadd9f9db8ee52104fdfcb668f655387cb0.tar.bz2
ATRI-906aafadd9f9db8ee52104fdfcb668f655387cb0.zip
🚑️ 紧急删除
-rw-r--r--ATRI/plugins/chat/data_source.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ATRI/plugins/chat/data_source.py b/ATRI/plugins/chat/data_source.py
index a6b4220..576db03 100644
--- a/ATRI/plugins/chat/data_source.py
+++ b/ATRI/plugins/chat/data_source.py
@@ -29,7 +29,7 @@ class Chat(Service):
@staticmethod
async def _request(url: str) -> dict:
res = await request.get(url)
- data = await res.json()
+ data = res.json()
return data
@classmethod