From c2a01f82943d5fb16f9ed4fc328f67ac6e3b7cc9 Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Sun, 31 May 2026 13:35:24 -0700 Subject: [PATCH] fix a missing paren in a comment --- meshtastic/tcp_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/tcp_interface.py b/meshtastic/tcp_interface.py index 9fbd7fe..e65fc55 100644 --- a/meshtastic/tcp_interface.py +++ b/meshtastic/tcp_interface.py @@ -66,7 +66,7 @@ class TCPInterface(StreamInterface): super().connect() def myConnect(self) -> None: - """Connect to socket (without attempting to start the interface's receive thread""" + """Connect to socket (without attempting to start the interface's receive thread)""" logger.debug(f"Connecting to {self.hostname}") # type: ignore[str-bytes-safe] server_address = (self.hostname, self.portNumber) self.socket = socket.create_connection(server_address)