From 70368f22df6e21fafafa6774d76f00f89c841ed5 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sat, 14 Dec 2024 20:37:33 +0300 Subject: [PATCH] Update aio_captcha_handler.py --- src/python3_anticaptcha/core/aio_captcha_handler.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/python3_anticaptcha/core/aio_captcha_handler.py b/src/python3_anticaptcha/core/aio_captcha_handler.py index 950cb69..7255057 100644 --- a/src/python3_anticaptcha/core/aio_captcha_handler.py +++ b/src/python3_anticaptcha/core/aio_captcha_handler.py @@ -8,7 +8,8 @@ from urllib.parse import urljoin import aiohttp from .enum import SaveFormatsEnm -from .const import ASYNC_RETRIES, BASE_REQUEST_URL, GET_RESULT_POSTFIX, CREATE_TASK_POSTFIX, attempts_generator +from .const import ASYNC_RETRIES, BASE_REQUEST_URL, GET_RESULT_POSTFIX, CREATE_TASK_POSTFIX +from .utils import attempts_generator from .serializer import CreateTaskResponseSer __all__ = ("AIOCaptchaHandler",)