From 8f7fecf8c7c6259c990b360401b2cebf6623395e Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Sat, 7 Mar 2026 11:43:58 +0100 Subject: [PATCH] Fix super() call in AntiGateTaskProxyless constructor --- 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..501ef67 100644 --- a/python_anticaptcha/tasks.py +++ b/python_anticaptcha/tasks.py @@ -308,7 +308,7 @@ def __init__(self, website_url, template_name, variables, *args, **kwargs): self.websiteURL = website_url self.templateName = template_name self.variables = variables - super(AntiGateTaskProxyless).__init__(*args, **kwargs) + super(AntiGateTaskProxyless).__init__(self, *args, **kwargs) def serialize(self, **result): data = super(AntiGateTaskProxyless, self).serialize(**result)