mirror of
https://github.com/ansible/awx.git
synced 2026-03-19 01:47:31 -02:30
Add noqa directive for super calls
This commit is contained in:
@@ -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'),
|
||||
|
||||
Reference in New Issue
Block a user