From bed6b477e4daf504e9f25a533fd6796a4ad3f2b5 Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Sat, 7 Mar 2026 11:43:24 +0100 Subject: [PATCH] Fix bug in GeeTestTaskProxyless --- python_anticaptcha/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_anticaptcha/tasks.py b/python_anticaptcha/tasks.py index a48963b..22dfa2d 100644 --- a/python_anticaptcha/tasks.py +++ b/python_anticaptcha/tasks.py @@ -280,7 +280,7 @@ def __init__( self.challenge = challenge self.geetestApiServerSubdomain = subdomain self.geetestGetLib = lib - super(GeeTestTaskProxyless).__init__(*args, **kwargs) + super(GeeTestTaskProxyless, self).__init__(*args, **kwargs) def serialize(self, **result): data = super(GeeTestTaskProxyless, self).serialize(**result)