From cd100fd77014edda652da8842530977a0d88aa4f Mon Sep 17 00:00:00 2001 From: Seth Foster Date: Wed, 2 Jun 2021 19:57:55 -0400 Subject: fix super and kwargs --- awx_collection/plugins/lookup/schedule_rrule.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'awx_collection') 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): -- cgit v1.2.3