mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-09 01:21:49 -05:00
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