diff options
author | Paul Belanger <pabelanger@redhat.com> | 2020-06-19 12:10:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-19 16:10:16 +0000 |
commit | 04d6824f87023ec59dfed5eacb7684b024b15f32 (patch) | |
tree | 7fe8708b29403328bc147966ef8d9dc110052cff /plugins/modules/vyos_command.py | |
parent | fa9d2a77845c521a4536e5a671c9328b34e58e17 (diff) | |
download | vyos-ansible-collection-04d6824f87023ec59dfed5eacb7684b024b15f32.tar.gz vyos-ansible-collection-04d6824f87023ec59dfed5eacb7684b024b15f32.zip |
Remove # pylint: skip-file usage (#47)0.0.4
Remove # pylint: skip-file usage
Reviewed-by: Paul Belanger
https://github.com/pabelanger
Diffstat (limited to 'plugins/modules/vyos_command.py')
-rw-r--r-- | plugins/modules/vyos_command.py | 3 |
1 files changed, 1 insertions, 2 deletions
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 <http://www.gnu.org/licenses/>. # -# 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): |