From cb773bc585a5c35018faa8c889aca392357659c2 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sat, 14 Oct 2017 01:41:11 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=B4=D1=87=D0=B8=D1=89=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python3_anticaptcha/AntiCaptchaControl.py | 7 ------- 1 file changed, 7 deletions(-) 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))