summaryrefslogtreecommitdiff
path: root/plugins/terminal/vyos.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/terminal/vyos.py')
-rw-r--r--plugins/terminal/vyos.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/terminal/vyos.py b/plugins/terminal/vyos.py
index ef036ac..b9e84d7 100644
--- a/plugins/terminal/vyos.py
+++ b/plugins/terminal/vyos.py
@@ -24,9 +24,7 @@ import os
import re
from ansible.errors import AnsibleConnectionFailure
-from ansible_collections.ansible.netcommon.plugins.plugin_utils.terminal_base import (
- TerminalBase,
-)
+from ansible_collections.ansible.netcommon.plugins.plugin_utils.terminal_base import TerminalBase
class TerminalModule(TerminalBase):
@@ -71,8 +69,6 @@ class TerminalModule(TerminalBase):
try:
for cmd in (b"set terminal length 0", b"set terminal width 512"):
self._exec_cli_command(cmd)
- self._exec_cli_command(
- b"set terminal length %d" % self.terminal_length
- )
+ self._exec_cli_command(b"set terminal length %d" % self.terminal_length)
except AnsibleConnectionFailure:
raise AnsibleConnectionFailure("unable to set terminal parameters")