diff --git a/python3_anticaptcha/NoCaptchaTask.py b/python3_anticaptcha/NoCaptchaTask.py index d5716e0..cefbb08 100644 --- a/python3_anticaptcha/NoCaptchaTask.py +++ b/python3_anticaptcha/NoCaptchaTask.py @@ -122,7 +122,6 @@ class aioNoCaptchaTask: self.task_payload["task"].update({"websiteURL": websiteURL, "websiteKey": websiteKey}) # отправляем реквест, в ответ получаем JSON содержащий номер решаемой капчи - captcha_id = requests.post(create_task_url, json=self.task_payload).json() async with aiohttp.ClientSession() as session: async with session.post(create_task_url, json=self.task_payload) as resp: captcha_id = await resp.json()