Skip to content

Commit c2a01f8

Browse files
committed
fix a missing paren in a comment
1 parent 14f5339 commit c2a01f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

meshtastic/tcp_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def connect(self) -> None:
6666
super().connect()
6767

6868
def myConnect(self) -> None:
69-
"""Connect to socket (without attempting to start the interface's receive thread"""
69+
"""Connect to socket (without attempting to start the interface's receive thread)"""
7070
logger.debug(f"Connecting to {self.hostname}") # type: ignore[str-bytes-safe]
7171
server_address = (self.hostname, self.portNumber)
7272
self.socket = socket.create_connection(server_address)

0 commit comments

Comments
 (0)