summaryrefslogtreecommitdiff
path: root/plugins/modules/vyos_command.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/modules/vyos_command.py')
-rw-r--r--plugins/modules/vyos_command.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/plugins/modules/vyos_command.py b/plugins/modules/vyos_command.py
index d5ab918..94f16f3 100644
--- a/plugins/modules/vyos_command.py
+++ b/plugins/modules/vyos_command.py
@@ -148,13 +148,12 @@ from ansible_collections.ansible.netcommon.plugins.module_utils.network.common.p
Conditional,
)
from ansible_collections.ansible.netcommon.plugins.module_utils.network.common.utils import (
- transform_commands,
to_lines,
-)
-from ansible_collections.vyos.vyos.plugins.module_utils.network.vyos.vyos import (
- run_commands,
+ transform_commands,
)
+from ansible_collections.vyos.vyos.plugins.module_utils.network.vyos.vyos import run_commands
+
def parse_commands(module, warnings):
commands = transform_commands(module)
@@ -216,9 +215,7 @@ def main():
msg = "One or more conditional statements have not been satisfied"
module.fail_json(msg=msg, failed_conditions=failed_conditions)
- result.update(
- {"stdout": responses, "stdout_lines": list(to_lines(responses))}
- )
+ result.update({"stdout": responses, "stdout_lines": list(to_lines(responses))})
module.exit_json(**result)