Skip to content

Commit 35ab6fa

Browse files
committed
tools/virtual-hub-animator: Fix broken Python dep.
The broadcast arg has been deprecated and is now the default.
1 parent 932bba4 commit 35ab6fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/virtual-hub-animator/data_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def handle_message(id, data):
3535
def socket_send_data_task():
3636
while True:
3737
sio.sleep(0.04)
38-
sio.emit("hubStateData", {"data": motor_angles}, broadcast=True)
38+
sio.emit("hubStateData", {"data": motor_angles})
3939

4040

4141
def server_task():

0 commit comments

Comments
 (0)