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

@@ -20,7 +20,7 @@ class TowerAWXKitModule(TowerModule):
def __init__(self, argument_spec, **kwargs):
kwargs['supports_check_mode'] = False
super().__init__(argument_spec=argument_spec, **kwargs)
super(TowerAWXKitModule, self).__init__(argument_spec=argument_spec, **kwargs) # noqa
# Die if we don't have AWX_KIT installed
if not HAS_AWX_KIT: