Skip to content

Commit

Permalink
Zyxel: Corrected inherited class
Browse files Browse the repository at this point in the history
  • Loading branch information
k-ribot committed Sep 5, 2023
1 parent 44a3b08 commit f0ea895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netmiko/zyxel/zyxel_ssh.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from typing import Any, Sequence, Iterator, TextIO, Union
from netmiko.cisco_base_connection import CiscoSSHConnection
from netmiko.base_connection import BaseConnection
from netmiko.no_enable import NoEnable
from netmiko.no_config import NoConfig


class ZyxelSSH(NoEnable, NoConfig, CiscoSSHConnection):
class ZyxelSSH(NoEnable, NoConfig, BaseConnection):
def disable_paging(self, *args: Any, **kwargs: Any) -> str:
"""No paging on Zyxel"""
return ""
Expand Down

0 comments on commit f0ea895

Please sign in to comment.