Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Jun 24, 2024
1 parent 406a638 commit 3af306a
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 3 deletions.
12 changes: 11 additions & 1 deletion netmiko/ipinfusion/ipinfusion_ocnos.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@
from typing import Any
from socket import socket

from netmiko._telnetlib.telnetlib import IAC, DO, DONT, WILL, WONT, SB, SE, TTYPE, Telnet
from netmiko._telnetlib.telnetlib import (
IAC,
DO,
DONT,
WILL,
WONT,
SB,
SE,
TTYPE,
Telnet,
)
from netmiko.cisco_base_connection import CiscoBaseConnection


Expand Down
14 changes: 13 additions & 1 deletion netmiko/raisecom/raisecom_roap.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@
import time
from socket import socket

from netmiko._telnetlib.telnetlib import IAC, DO, DONT, WILL, WONT, SB, SE, ECHO, SGA, NAWS, Telnet
from netmiko._telnetlib.telnetlib import (
IAC,
DO,
DONT,
WILL,
WONT,
SB,
SE,
ECHO,
SGA,
NAWS,
Telnet,
)
from netmiko.exceptions import NetmikoAuthenticationException


Expand Down
14 changes: 13 additions & 1 deletion netmiko/zte/zte_zxros.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@
from typing import Any

from netmiko.cisco_base_connection import CiscoBaseConnection
from netmiko._telnetlib.telnetlib import IAC, DO, DONT, WILL, WONT, SB, SE, ECHO, SGA, NAWS, Telnet
from netmiko._telnetlib.telnetlib import (
IAC,
DO,
DONT,
WILL,
WONT,
SB,
SE,
ECHO,
SGA,
NAWS,
Telnet,
)


class ZteZxrosBase(CiscoBaseConnection):
Expand Down

0 comments on commit 3af306a

Please sign in to comment.