Skip to content

Commit 7b18d57

Browse files
authored
Fix super() call in AntiGateTaskProxyless constructor (#110)
1 parent 07ca7a7 commit 7b18d57

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)