Skip to content

Commit

Permalink
Merge branch 'develop' into ping-source-interface
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceaulinic authored May 27, 2021
2 parents 275c227 + 009d545 commit 7b56cdd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion napalm/ios/ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -3445,7 +3445,8 @@ def get_network_instances(self, name=""):

# remove interfaces in the VRF from the default VRF
for item in interfaces:
del instances["default"]["interfaces"]["interface"][item]
if item in instances["default"]["interfaces"]["interface"]:
del instances["default"]["interfaces"]["interface"][item]

instances[vrf_name] = {
"name": vrf_name,
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
black==21.5b1
coveralls==3.0.1
coveralls==3.1.0
ddt==1.4.2
flake8-import-order==0.18.1
pytest==5.4.3
Expand Down

0 comments on commit 7b56cdd

Please sign in to comment.