From 678a46f16ea0c33d09e5d5bb23a1b9e2e18f07fe Mon Sep 17 00:00:00 2001 From: Lizzzka007 <gashchuk2011@mail.ru> Date: Wed, 6 Dec 2023 01:49:36 +0300 Subject: [PATCH] hotfix --- plotter/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotter/main.py b/plotter/main.py index 7c6eb63..7c9e069 100755 --- a/plotter/main.py +++ b/plotter/main.py @@ -14,7 +14,7 @@ def dump(filename, var=[None], mval=[None]): Plot.set(args, if_manual_plot=manual_plot, if_save_result=save_result) Plot.dump() -def plot(filename, out = './', oname = 'fig.png', var=[None], mval=[None], min_y = None, max_y = None): +def plot(filename, out = './', oname = [None], var=[None], mval=[None], min_y = None, max_y = None): Plot = Plotter() args = Args([filename], Plot.plot, var=var, mval=mval, oname=oname, out=out) Plot.set(args, if_manual_plot=manual_plot, if_save_result=save_result) -- GitLab