extensions; type checking fix take two

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2022-11-13 14:30:24 -05:00
parent 0c6e860534
commit 490d27b7de
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
1 changed files with 1 additions and 2 deletions

View File

@ -25,7 +25,6 @@ if TYPE_CHECKING:
from moonraker import Server
from confighelper import ConfigHelper
from websockets import WebRequest
AsyncioServer = asyncio.base_events.Server
UNIX_BUFFER_LIMIT = 20 * 1024 * 1024
@ -33,7 +32,7 @@ class ExtensionManager:
def __init__(self, config: ConfigHelper) -> None:
self.server = config.get_server()
self.agents: Dict[str, BaseSocketClient] = {}
self.uds_server: Optional[AsyncioServer] = None
self.uds_server: Optional[asyncio.AbstractServer] = None
self.server.register_endpoint(
"/connection/send_event", ["POST"], self._handle_agent_event,
transports=["websocket"]