diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-09-12 12:13:06 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-09-12 12:13:06 +0200 |
commit | 459b4665e436a23a55202ccdfdaf5b3bb9c83416 (patch) | |
tree | b2a6687dc07c07ff3d507b30a1e6f05cc6a74cf5 /run.py | |
parent | 76a9a93d72ad3ff21854f532d64aca42c72c1ebf (diff) | |
download | meteo_toolbox-459b4665e436a23a55202ccdfdaf5b3bb9c83416.tar.gz |
output dir
Diffstat (limited to 'run.py')
-rwxr-xr-x | run.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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') |