From 02e9d4fc13acddb22393e2ebc854b9889a0ac83d Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Thu, 1 Feb 2024 17:01:37 +0100 Subject: plotter: remove redundant color specifier --- lib/plotter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/plotter.py b/lib/plotter.py index 7b793f4..0f34247 100755 --- a/lib/plotter.py +++ b/lib/plotter.py @@ -267,7 +267,7 @@ def plot_param( for x in xsp: xarg = [*k[:param_idx], x, *k[param_idx:]] ysp.append(extra_function(*xarg)) - plt.plot(xsp, ysp, "r--", color=cm(i), linewidth=1, dashes=(3, 3)) + plt.plot(xsp, ysp, "--", color=cm(i), linewidth=1, dashes=(3, 3)) YY.append(ysp) YY_legend.append(legend_sanitizer.sub("_", "symb_{}".format(k))) -- cgit v1.2.3