summaryrefslogtreecommitdiff
path: root/ATRI
diff options
context:
space:
mode:
Diffstat (limited to 'ATRI')
-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