Skip to content

Commit

Permalink
Update sio_captcha_instrument.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiDrang committed Dec 18, 2024
1 parent e48b9dc commit 54ea5dc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/python3_anticaptcha/core/sio_captcha_instrument.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import requests
from requests.adapters import HTTPAdapter

from .base import CaptchaParams
from .enum import SaveFormatsEnm, ResponseStatusEnm
from .const import RETRIES, BASE_REQUEST_URL, GET_RESULT_POSTFIX, CREATE_TASK_POSTFIX
from .utils import attempts_generator
Expand All @@ -23,7 +22,7 @@ class SIOCaptchaInstrument(CaptchaInstrument):
Instrument for working with sync captcha
"""

def __init__(self, captcha_params: CaptchaParams):
def __init__(self, captcha_params: "CaptchaParams"):
super().__init__()
self.captcha_params = captcha_params
# prepare session
Expand Down

0 comments on commit 54ea5dc

Please sign in to comment.