From e723c28c0aab44357516b282846fa4b441af1de3 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Fri, 29 Sep 2023 15:20:28 +0200 Subject: python module restructure --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run.py') 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') -- cgit v1.2.3