aboutsummaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'run.py')
-rwxr-xr-xrun.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/run.py b/run.py
index e1b6ad0..7439bfb 100755
--- a/run.py
+++ b/run.py
@@ -2,6 +2,7 @@
import sys
import yaml
+import matplotlib.pyplot as plt
FILE = 'config.yaml'
if len(sys.argv) > 1:
@@ -17,3 +18,5 @@ for plotter in conf['plotter']:
mod = __import__(modname)
mod.run(**plotter)
+
+ plt.close('all')