File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 32
32
33
33
from datetime import datetime
34
34
from napalm .base import NetworkDriver
35
- from napalm .base .utils import py23_compat
35
+ # from napalm.base.utils import py23_compat
36
36
from napalm .base .netmiko_helpers import netmiko_args
37
37
from napalm .base .exceptions import (
38
38
MergeConfigException ,
@@ -139,7 +139,7 @@ def close(self):
139
139
self .prompt_quiet_configured = False
140
140
self ._netmiko_close ()
141
141
142
- # ok
142
+ # verified
143
143
def is_alive (self ):
144
144
""" Returns a flag with the state of the connection."""
145
145
if self .device is None :
@@ -162,7 +162,7 @@ def is_alive(self):
162
162
# If unable to send, we can tell for sure that the connection is unusable
163
163
return {'is_alive' : False }
164
164
165
- # ok
165
+ # verified
166
166
def cli (self , commands ):
167
167
"""Execute a list of commands and return the output in a dictionary format using the command
168
168
Example input:
Original file line number Diff line number Diff line change 1
- napalm == 2.5 .0
1
+ napalm >= 3.0 .0
You can’t perform that action at this time.
0 commit comments