diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-09-29 15:20:28 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-09-29 15:20:28 +0200 |
commit | e723c28c0aab44357516b282846fa4b441af1de3 (patch) | |
tree | e22dcb8c11a5be530c83800991e1f1818a525917 /run.py | |
parent | b373d91f8c8056904c6779c7fcfb47ff5d8ee242 (diff) | |
download | meteo_toolbox-e723c28c0aab44357516b282846fa4b441af1de3.tar.gz |
python module restructure
Diffstat (limited to 'run.py')
-rwxr-xr-x | run.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ for plotter in conf['plotter']: modname = plotter['module'] del plotter['module'] - mod = __import__(modname) + mod = __import__(modname, fromlist=[None]) mod.run(**plotter) plt.close('all') |