Disable pylint's super-with-arguments.

We still need to support Python 2.
This commit is contained in:
Rafael Guterres Jeffman
2021-04-29 19:03:54 -03:00
parent e7b9e97a84
commit 544474a593
2 changed files with 2 additions and 0 deletions

View File

@@ -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
)