From d4dfb9979317c8e00fa09f3c41ad6434160cadac Mon Sep 17 00:00:00 2001 From: Lizzzka007 <gashchuk2011@mail.ru> Date: Mon, 19 Jun 2023 22:43:59 +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 5680c7e..2deb324 100755 --- a/plotter/main.py +++ b/plotter/main.py @@ -60,7 +60,7 @@ def avg_plot(filename, out = './', oname = 'fig.png', var=[None], mval=[None]): Plot.set(args, if_manual_plot=manual_plot, if_save_result=save_result) Plot.avg_plot() -def plot_diff(filename, out = './', oname = 'fig.png', var=[None], mval=[None], ndim = 1): +def plot_diff(filename, ndim, out = './', oname = 'fig.png', var=[None], mval=[None]): Plot = Plotter() args = Args(filename, Plot.plot_diff, var=var, mval=mval, oname=oname, out=out, ndim=ndim) Plot.set(args, if_manual_plot=manual_plot, if_save_result=save_result) -- GitLab