summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ATRI/utils/request.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ATRI/utils/request.py b/ATRI/utils/request.py
index c208bbf..8dec9c7 100644
--- a/ATRI/utils/request.py
+++ b/ATRI/utils/request.py
@@ -2,10 +2,10 @@ import httpx
async def get(url: str, **kwargs):
- async with httpx.AsyncClient(proxies=proxy) as client:
+ async with httpx.AsyncClient() as client:
return await client.get(url, **kwargs)
async def post(url: str, **kwargs):
- async with httpx.AsyncClient(proxies=proxy) as client:
+ async with httpx.AsyncClient() as client:
return await client.post(url, **kwargs)