From 6a98a937dd3146d1e82d72709e0aec9756373468 Mon Sep 17 00:00:00 2001 From: fredfortier Date: Tue, 5 Sep 2017 01:15:40 -0400 Subject: [PATCH] Minor fix in the graph logic --- catalyst/exchange/live_graph_clock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/exchange/live_graph_clock.py b/catalyst/exchange/live_graph_clock.py index 1dfa7cb2..bd76a38d 100644 --- a/catalyst/exchange/live_graph_clock.py +++ b/catalyst/exchange/live_graph_clock.py @@ -172,4 +172,4 @@ class LiveGraphClock(object): # I can't use the "animate" reactive approach here because # I need to yield from the main loop. # Workaround: https://stackoverflow.com/a/33050617/814633 - plt.pause(0.001) + plt.pause(1)