Skip to content

Commit 0df6e6b

Browse files
author
Andrei
committed
refactor
1 parent 763dc2c commit 0df6e6b

6 files changed

Lines changed: 0 additions & 7 deletions

File tree

src/python3_capsolver/control.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ def __init__(
2121
*args,
2222
**kwargs,
2323
):
24-
2524
super().__init__(*args, **kwargs)
2625

2726
def get_balance(self) -> ControlResponseSer:

src/python3_capsolver/datadome_slider.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def __init__(
6464
*args,
6565
**kwargs,
6666
):
67-
6867
super().__init__(*args, **kwargs)
6968

7069
if captcha_type in DatadomeSliderTypeEnm.list():

src/python3_capsolver/gee_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ class GeeTest(BaseCaptcha):
7171
def __init__(
7272
self, captcha_type: Union[GeeTestCaptchaTypeEnm, str], websiteURL: str, gt: str, challenge: str, *args, **kwargs
7373
):
74-
7574
super().__init__(*args, **kwargs)
7675

7776
if captcha_type in GeeTestCaptchaTypeEnm.list():

src/python3_capsolver/hcaptcha.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ class HCaptcha(BaseCaptcha):
7878
"""
7979

8080
def __init__(self, captcha_type: Union[HCaptchaTypeEnm, str], websiteURL: str, websiteKey: str, *args, **kwargs):
81-
8281
super().__init__(*args, **kwargs)
8382

8483
if captcha_type in HCaptchaTypeEnm.list():

src/python3_capsolver/image_to_text.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ def __init__(
7676
sleep_time: int = 10,
7777
request_url: str = REQUEST_URL,
7878
):
79-
8079
super().__init__(api_key=api_key, sleep_time=sleep_time, request_url=request_url)
8180

8281

tests/test_fun_captcha.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ def test_no_captcha_type(self):
6060

6161

6262
class TestFunCaptchaProxyless(BaseTest):
63-
6463
captcha_type = CaptchaTypeEnm.FuncaptchaTaskProxyless
6564
"""
6665
Success tests
@@ -196,7 +195,6 @@ def test_api_key_err(self):
196195

197196

198197
class TestFunCaptchaClassification(BaseTest):
199-
200198
captcha_type = CaptchaTypeEnm.FunCaptchaClassification
201199

202200
question = "Pick the bicycle"

0 commit comments

Comments
 (0)