ignored protected-access for _unpack()

This commit is contained in:
Devaev Maxim
2020-09-30 07:25:52 +03:00
parent 3f9c32e9fc
commit 630593492a
7 changed files with 7 additions and 8 deletions

View File

@@ -41,7 +41,6 @@ def main(argv: Optional[List[str]]=None) -> None:
argv=argv,
)[2].ipmi
# pylint: disable=protected-access
IpmiServer(
auth_manager=IpmiAuthManager(**config.auth._unpack()),
kvmd=KvmdClient(

View File

@@ -43,8 +43,6 @@ from .server import KvmdServer
# =====
def main(argv: Optional[List[str]]=None) -> None:
# pylint: disable=protected-access
config = init(
prog="kvmd",
description="The main Pi-KVM daemon",

View File

@@ -44,7 +44,6 @@ def main(argv: Optional[List[str]]=None) -> None:
user_agent = htclient.make_user_agent("KVMD-VNC")
# pylint: disable=protected-access
VncServer(
host=config.server.host,
port=config.server.port,