aboutsummaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2023-09-12 12:13:06 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2023-09-12 12:13:06 +0200
commit459b4665e436a23a55202ccdfdaf5b3bb9c83416 (patch)
treeb2a6687dc07c07ff3d507b30a1e6f05cc6a74cf5 /run.py
parent76a9a93d72ad3ff21854f532d64aca42c72c1ebf (diff)
downloadmeteo_toolbox-459b4665e436a23a55202ccdfdaf5b3bb9c83416.tar.gz
output dir
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')