refactoring

This commit is contained in:
Maxim Devaev
2023-04-29 05:15:28 +03:00
parent 12422fa1ff
commit b5d6731497
4 changed files with 7 additions and 7 deletions

View File

@@ -69,7 +69,7 @@ from .logreader import LogReader
from .ugpio import UserGpio
from .streamer import Streamer
from .snapshoter import Snapshoter
from .tesseract import TesseractOcr
from .ocr import Ocr
from .api.auth import AuthApi
from .api.auth import check_request_auth
@@ -130,7 +130,7 @@ class KvmdServer(HttpServer): # pylint: disable=too-many-arguments,too-many-ins
info_manager: InfoManager,
log_reader: (LogReader | None),
user_gpio: UserGpio,
ocr: TesseractOcr,
ocr: Ocr,
hid: BaseHid,
atx: BaseAtx,