Skip to content

Commit

Permalink
Fix pyIOSXR netmiko exception import path (#1636)
Browse files Browse the repository at this point in the history
Co-authored-by: Dylan Kaplan <dmk@fb.com>
  • Loading branch information
dkaplan1 and Dylan Kaplan committed May 5, 2022
1 parent fa9ae9e commit 6137e85
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions napalm/pyIOSXR/iosxr.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@

# third party lib
from lxml import etree as ET
from netmiko import ConnectHandler
from netmiko.ssh_exception import NetMikoTimeoutException
from netmiko.ssh_exception import NetMikoAuthenticationException
from netmiko import (
ConnectHandler,
NetMikoAuthenticationException,
NetMikoTimeoutException,
)

# local modules
from napalm.pyIOSXR.exceptions import LockError
Expand Down

0 comments on commit 6137e85

Please sign in to comment.