Add noqa directive for super calls

This commit is contained in:
beeankha
2020-08-25 15:49:20 -04:00
parent ef7a74c4a3
commit 4bc1a128ec
6 changed files with 11 additions and 11 deletions

View File

@@ -110,7 +110,7 @@ class TowerLegacyModule(AnsibleModule):
('tower_config_file', 'validate_certs'),
))
super().__init__(argument_spec=args, **kwargs)
super(TowerLegacyModule, self).__init__(argument_spec=args, **kwargs) # noqa
if not HAS_TOWER_CLI:
self.fail_json(msg=missing_required_lib('ansible-tower-cli'),