Resolve daemon warnings for threading methods

Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com>
This commit is contained in:
Emmanuel Ferdman
2025-04-25 00:30:08 -07:00
parent d9cb4ffdd0
commit 444a1df740
+1 -1
View File
@@ -94,7 +94,7 @@ class Client:
# start websocket client in a thread
self.ws_thread = threading.Thread(target=self.client_socket.run_forever)
self.ws_thread.setDaemon(True)
self.ws_thread.daemon = True
self.ws_thread.start()
self.transcript = []