Merge pull request #366 from emmanuel-ferdman/main

Resolve daemon warnings for threading methods
This commit is contained in:
makaveli
2025-04-30 12:09:03 +05:30
committed by GitHub
+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 = []