diff options
author | Seth Foster <fosterbseth@gmail.com> | 2021-06-03 01:57:55 +0200 |
---|---|---|
committer | Seth Foster <fosterbseth@gmail.com> | 2021-06-08 20:33:28 +0200 |
commit | cd100fd77014edda652da8842530977a0d88aa4f (patch) | |
tree | ed5932744cddf80aa53c2129f6cd34b289900378 /awx_collection | |
parent | various sanity fixes (diff) | |
download | awx-cd100fd77014edda652da8842530977a0d88aa4f.tar.xz awx-cd100fd77014edda652da8842530977a0d88aa4f.zip |
fix super and kwargs
Diffstat (limited to 'awx_collection')
-rw-r--r-- | awx_collection/plugins/lookup/schedule_rrule.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awx_collection/plugins/lookup/schedule_rrule.py b/awx_collection/plugins/lookup/schedule_rrule.py index 91619b20a1..1b40f99474 100644 --- a/awx_collection/plugins/lookup/schedule_rrule.py +++ b/awx_collection/plugins/lookup/schedule_rrule.py @@ -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): |