1 parent 677f28b commit 504a3a2Copy full SHA for 504a3a2
1 file changed
src/websocket.py
@@ -3,7 +3,6 @@
3
def broadcast(message):
4
# Loop through latest clients because they have more chance to be connected
5
for client in ws_clients[::-1].copy():
6
- print(client, end=" ")
7
try:
8
client.send(message)
9
except Exception as e:
0 commit comments