mirror of
https://github.com/ansible/awx.git
synced 2026-02-13 17:24:45 -03:30
fix super and kwargs
This commit is contained in:
@@ -137,7 +137,7 @@ class LookupModule(LookupBase):
|
||||
AnsibleError('{0}'.format(LIBRARY_IMPORT_ERROR)),
|
||||
LIBRARY_IMPORT_ERROR
|
||||
)
|
||||
super().__init__(*args, *kwargs)
|
||||
super(LookupModule, self).__init__(*args, **kwargs)
|
||||
|
||||
@staticmethod
|
||||
def parse_date_time(date_string):
|
||||
|
||||
Reference in New Issue
Block a user