Skip to content

Commit 9000917

Browse files
committed
remove py23 and requirements
1 parent 3de6b47 commit 9000917

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

napalm_huawei_vrp/huawei_vrp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
from datetime import datetime
3434
from napalm.base import NetworkDriver
35-
from napalm.base.utils import py23_compat
35+
# from napalm.base.utils import py23_compat
3636
from napalm.base.netmiko_helpers import netmiko_args
3737
from napalm.base.exceptions import (
3838
MergeConfigException,
@@ -139,7 +139,7 @@ def close(self):
139139
self.prompt_quiet_configured = False
140140
self._netmiko_close()
141141

142-
# ok
142+
# verified
143143
def is_alive(self):
144144
""" Returns a flag with the state of the connection."""
145145
if self.device is None:
@@ -162,7 +162,7 @@ def is_alive(self):
162162
# If unable to send, we can tell for sure that the connection is unusable
163163
return {'is_alive': False}
164164

165-
# ok
165+
# verified
166166
def cli(self, commands):
167167
"""Execute a list of commands and return the output in a dictionary format using the command
168168
Example input:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
napalm==2.5.0
1+
napalm>=3.0.0

0 commit comments

Comments
 (0)