mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
removes unneeded code from netcli
Some old remnants of code from the refactor of netcli was left over as reported in #17408. This commit removes the old code as it isn't need and in fact wasnt doing anything
This commit is contained in:
parent
37f721f315
commit
fbda7d127f
1 changed files with 0 additions and 3 deletions
|
@ -73,9 +73,6 @@ class Cli(object):
|
|||
output = output or self.default_output
|
||||
if isinstance(command, Command):
|
||||
return command
|
||||
elif isinstance(command, dict):
|
||||
output = cmd.get('output') or output
|
||||
cmd = cmd['command']
|
||||
if isinstance(prompt, string_types):
|
||||
prompt = re.compile(re.escape(prompt))
|
||||
return Command(command, output, prompt=prompt, response=response, **kwargs)
|
||||
|
|
Loading…
Reference in a new issue