Fix pylint warnings for name redefinition.

This commit is contained in:
Rafael Guterres Jeffman
2021-04-29 18:54:33 -03:00
parent afb64419d5
commit e7b9e97a84
3 changed files with 7 additions and 7 deletions

View File

@@ -386,8 +386,8 @@ def main():
**exit_args)
# Execute commands
for name, command, args in commands:
api_command(ansible_module, command, name, args)
for _name, command, args in commands:
api_command(ansible_module, command, _name, args)
changed = True
except Exception as e: