From 967f9c747466951bf4a26debe768c126a225c925 Mon Sep 17 00:00:00 2001
From: Rafael Guterres Jeffman <rjeffman@redhat.com>
Date: Tue, 18 May 2021 21:30:28 -0300
Subject: [PATCH] Fix, by disabling, pylint's warning on unnecessary pass.

---
 plugins/module_utils/ansible_freeipa_module.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/module_utils/ansible_freeipa_module.py b/plugins/module_utils/ansible_freeipa_module.py
index f8f1e2bb..71ce4063 100644
--- a/plugins/module_utils/ansible_freeipa_module.py
+++ b/plugins/module_utils/ansible_freeipa_module.py
@@ -693,7 +693,7 @@ else:
 
         def check_ipa_params(self):
             """Validate ipa_params before command is called."""
-            pass
+            pass  # pylint: disable=unnecessary-pass
 
         def define_ipa_commands(self):
             """Define commands that will be run in IPA server."""
-- 
GitLab