Skip to content

Commit 8f7fecf

Browse files
authored
Fix super() call in AntiGateTaskProxyless constructor
1 parent 491589a commit 8f7fecf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python_anticaptcha/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def __init__(self, website_url, template_name, variables, *args, **kwargs):
308308
self.websiteURL = website_url
309309
self.templateName = template_name
310310
self.variables = variables
311-
super(AntiGateTaskProxyless).__init__(*args, **kwargs)
311+
super(AntiGateTaskProxyless).__init__(self, *args, **kwargs)
312312

313313
def serialize(self, **result):
314314
data = super(AntiGateTaskProxyless, self).serialize(**result)

0 commit comments

Comments
 (0)