mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-07-31 20:04:45 +00:00
Disable pylint's super-with-arguments.
We still need to support Python 2.
This commit is contained in:
@@ -622,6 +622,7 @@ else:
|
|||||||
ipa_param_mapping = None
|
ipa_param_mapping = None
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
# pylint: disable=super-with-arguments
|
||||||
super(FreeIPABaseModule, self).__init__(*args, **kwargs)
|
super(FreeIPABaseModule, self).__init__(*args, **kwargs)
|
||||||
|
|
||||||
# Attributes to store kerberos credentials (if needed)
|
# Attributes to store kerberos credentials (if needed)
|
||||||
|
|||||||
@@ -504,6 +504,7 @@ class DNSZoneModule(FreeIPABaseModule):
|
|||||||
self.add_ipa_command("dnszone_mod", zone_name, args)
|
self.add_ipa_command("dnszone_mod", zone_name, args)
|
||||||
|
|
||||||
def process_command_result(self, name, command, args, result):
|
def process_command_result(self, name, command, args, result):
|
||||||
|
# pylint: disable=super-with-arguments
|
||||||
super(DNSZoneModule, self).process_command_result(
|
super(DNSZoneModule, self).process_command_result(
|
||||||
name, command, args, result
|
name, command, args, result
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user