diff --git a/python3_anticaptcha/AntiCaptchaControl.py b/python3_anticaptcha/AntiCaptchaControl.py index d8d8937..598b67d 100644 --- a/python3_anticaptcha/AntiCaptchaControl.py +++ b/python3_anticaptcha/AntiCaptchaControl.py @@ -1,11 +1,7 @@ import requests -import time -# from .errors import RuCaptchaError from config import get_balance_url, incorrect_captcha_url -from config import TEST_KEY - class AntiCaptchaControl: def __init__(self, anticaptcha_key): @@ -40,6 +36,3 @@ class AntiCaptchaControl: return True else: return False - - -print(AntiCaptchaControl(anticaptcha_key = TEST_KEY).complaint_on_result(reported_id = -5))