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