Skip to content
Snippets Groups Projects
Commit 544474a5 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

Disable pylint's `super-with-arguments`.

We still need to support Python 2.
parent e7b9e97a
No related branches found
No related tags found
No related merge requests found
......@@ -622,6 +622,7 @@ else:
ipa_param_mapping = None
def __init__(self, *args, **kwargs):
# pylint: disable=super-with-arguments
super(FreeIPABaseModule, self).__init__(*args, **kwargs)
# Attributes to store kerberos credentials (if needed)
......
......@@ -504,6 +504,7 @@ class DNSZoneModule(FreeIPABaseModule):
self.add_ipa_command("dnszone_mod", zone_name, args)
def process_command_result(self, name, command, args, result):
# pylint: disable=super-with-arguments
super(DNSZoneModule, self).process_command_result(
name, command, args, result
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment