Skip to content

Commit feac455

Browse files
committed
Fix flake8
1 parent afeea6c commit feac455

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

matter_server/client/connection.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22

33
from __future__ import annotations
44

5-
import asyncio
65
import logging
76
import os
87
import pprint
9-
from typing import Any, Callable, Dict, Final, cast
8+
from typing import Final, cast
109

1110
from aiohttp import ClientSession, ClientWebSocketResponse, WSMsgType, client_exceptions
1211

@@ -18,7 +17,6 @@
1817
CommandMessage,
1918
ErrorResultMessage,
2019
EventMessage,
21-
EventType,
2220
MessageType,
2321
ServerInfoMessage,
2422
SuccessResultMessage,
@@ -32,7 +30,6 @@
3230
InvalidState,
3331
NotConnected,
3432
)
35-
from .models.node import MatterNode
3633

3734
LOGGER = logging.getLogger(f"{__package__}.connection")
3835
VERBOSE_LOGGER = os.environ.get("MATTER_VERBOSE_LOGGING")

0 commit comments

Comments
 (0)