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

Fix issues raised by Pylint version 2.14.4.

parent b3856a1e
No related branches found
No related tags found
No related merge requests found
...@@ -126,7 +126,7 @@ class AutomountMap(IPAAnsibleModule): ...@@ -126,7 +126,7 @@ class AutomountMap(IPAAnsibleModule):
self.params_fail_used_invalid(invalid, state) self.params_fail_used_invalid(invalid, state)
def get_args(self, mapname, desc): # pylint: disable=no-self-use def get_args(self, mapname, desc):
# automountmapname is required for all automountmap operations. # automountmapname is required for all automountmap operations.
if not mapname: if not mapname:
self.fail_json(msg="automountmapname cannot be None or empty.") self.fail_json(msg="automountmapname cannot be None or empty.")
......
...@@ -280,7 +280,8 @@ class DNSZoneModule(IPAAnsibleModule): ...@@ -280,7 +280,8 @@ class DNSZoneModule(IPAAnsibleModule):
if any(invalid_ips): if any(invalid_ips):
self.fail_json(msg=error_msg % invalid_ips) self.fail_json(msg=error_msg % invalid_ips)
def is_valid_nsec3param_rec(self, nsec3param_rec): # pylint: disable=R0201 @staticmethod
def is_valid_nsec3param_rec(nsec3param_rec):
try: try:
part1, part2, part3, part4 = nsec3param_rec.split(" ") part1, part2, part3, part4 = nsec3param_rec.split(" ")
except ValueError: except ValueError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment