aboutsummaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2023-09-29 15:20:28 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2023-09-29 15:20:28 +0200
commite723c28c0aab44357516b282846fa4b441af1de3 (patch)
treee22dcb8c11a5be530c83800991e1f1818a525917 /run.py
parentb373d91f8c8056904c6779c7fcfb47ff5d8ee242 (diff)
downloadmeteo_toolbox-e723c28c0aab44357516b282846fa4b441af1de3.tar.gz
python module restructure
Diffstat (limited to 'run.py')
-rwxr-xr-xrun.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.py b/run.py
index 9ba7024..41c1f59 100755
--- a/run.py
+++ b/run.py
@@ -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')