From ebef9950cce4651d0fc604e04b7e7cd591cbfa32 Mon Sep 17 00:00:00 2001 From: Kyle Bartholomew Date: Fri, 5 Jun 2020 21:52:19 -0700 Subject: [PATCH] Remove Mac specific changes to prep for pull request --- tools/odrive/utils.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tools/odrive/utils.py b/tools/odrive/utils.py index 1d88736e..fe93dafd 100755 --- a/tools/odrive/utils.py +++ b/tools/odrive/utils.py @@ -115,10 +115,9 @@ def start_liveplotter(get_var_callback): fetch_t.daemon = True fetch_t.start() - #plot_t = threading.Thread(target=plot_data) - #plot_t.daemon = True - #plot_t.start() - plot_data() + plot_t = threading.Thread(target=plot_data) + plot_t.daemon = True + plot_t.start() return cancellation_token; #plot_data()