From 1125bed4dadf3906c389e4dc371d698dd6e7dd5d Mon Sep 17 00:00:00 2001 From: Felix Fischer <f.fischer@ifas.rwth-aachen.de> Date: Tue, 18 Feb 2025 17:32:44 +0100 Subject: [PATCH] another typing 'problem' --- src/scientific_plots/default_plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scientific_plots/default_plots.py b/src/scientific_plots/default_plots.py index 5df2af2..97fbc82 100644 --- a/src/scientific_plots/default_plots.py +++ b/src/scientific_plots/default_plots.py @@ -200,7 +200,7 @@ def plot_fit(X: In, Y: In, min(X) + (max(X) - min(X)) * i / (n_fit - 1) for i in range(n_fit)] Y_fit = [_fit_function(x) for x in X_fit] - plt.plot(X_fit, Y_fit, label="fit") + plt.plot(X_fit, Y_fit, label="fit") # type: ignore set_lims( X, Y, logscale=logscale, single_log=single_log, -- GitLab