From 04d6824f87023ec59dfed5eacb7684b024b15f32 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Fri, 19 Jun 2020 12:10:16 -0400 Subject: Remove # pylint: skip-file usage (#47) Remove # pylint: skip-file usage Reviewed-by: Paul Belanger https://github.com/pabelanger --- plugins/modules/vyos_command.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'plugins/modules/vyos_command.py') diff --git a/plugins/modules/vyos_command.py b/plugins/modules/vyos_command.py index 2bf5899..eec4344 100644 --- a/plugins/modules/vyos_command.py +++ b/plugins/modules/vyos_command.py @@ -15,7 +15,6 @@ # You should have received a copy of the GNU General Public License # along with Ansible. If not, see . # -# pylint: skip-file DOCUMENTATION = """ @@ -189,7 +188,7 @@ def main(): interval = module.params["interval"] match = module.params["match"] - for _ in range(retries): + for item in range(retries): responses = run_commands(module, commands) for item in list(conditionals): -- cgit v1.2.3