Skip to content

Commit 8569e03

Browse files
committed
remove some debug shit
1 parent c4e74db commit 8569e03

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

proxy_utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ async def check_proxy(proxy_url: str, session):
2020
settings.PROXY_CHECKING_TIMEOUT,
2121
session
2222
)
23-
res2 = await _request('GET', 'https://wtfismyip.com/text', proxy_url, settings.PROXY_CHECKING_TIMEOUT, session)
24-
res = async_requests.Response(200, "OK")
25-
print(res2)
23+
2624
if res.status == 200 and res.text == "OK":
2725
return True
2826
except (aiohttp.client_exceptions.ServerDisconnectedError,

0 commit comments

Comments
 (0)