Skip to content

Commit af50fed

Browse files
authored
Merge pull request #366 from emmanuel-ferdman/main
Resolve daemon warnings for threading methods
2 parents d9cb4ff + 444a1df commit af50fed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

whisper_live/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def __init__(
9494

9595
# start websocket client in a thread
9696
self.ws_thread = threading.Thread(target=self.client_socket.run_forever)
97-
self.ws_thread.setDaemon(True)
97+
self.ws_thread.daemon = True
9898
self.ws_thread.start()
9999

100100
self.transcript = []

0 commit comments

Comments
 (0)