Skip to content

Commit a6feb81

Browse files
committed
Call super().close() in SerialProtocol
1 parent b6a5c8d commit a6feb81

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

zigpy_deconz/uart.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def connection_lost(self, exc: Exception | None) -> None:
3232
self._api.connection_lost(exc)
3333

3434
def close(self):
35+
super().close()
3536
self._api = None
3637

3738
def send(self, data: bytes) -> None:

0 commit comments

Comments
 (0)