Skip to content

Commit

Permalink
Update binance.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiDrang committed Jan 5, 2025
1 parent cc9f30d commit a941897
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/python3_capsolver/binance.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
from typing import Union

from python3_capsolver.core.base import CaptchaParams
from .core.enum import BinanceCaptchaTaskEnm
from .core.serializer import CaptchaResponseSer, BinanceCaptchaTaskSer


class Binance(BaseCaptcha):
class Binance(CaptchaParams):
"""
The class is used to work with Capsolver Imperva method.
Expand Down Expand Up @@ -66,9 +67,9 @@ class Binance(BaseCaptcha):

def __init__(
self,
captcha_type: Union[BinanceCaptchaTaskEnm, str],
websiteURL: str,
validateId: str,
captcha_type: Union[BinanceCaptchaTaskEnm, str] = BinanceCaptchaTaskEnm.BinanceCaptchaTask,
websiteKey: str = "login",
*args,
**kwargs,
Expand Down

0 comments on commit a941897

Please sign in to comment.