fix super and kwargs

This commit is contained in:
Seth Foster 2021-06-02 19:57:55 -04:00
parent 157adb828e
commit cd100fd770
No known key found for this signature in database
GPG Key ID: 86E90D96F7184028

View File

@ -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):