diff --git a/exercises-toolbox/8-all/example-report/templates/auswertung_py_template b/exercises-toolbox/8-all/example-report/templates/auswertung_py_template index 461f1370..4529dae4 100644 --- a/exercises-toolbox/8-all/example-report/templates/auswertung_py_template +++ b/exercises-toolbox/8-all/example-report/templates/auswertung_py_template @@ -420,7 +420,7 @@ ax.set_ylabel("$t$ / s") # <2-> ax.plot(h_c_mean, t_c_mean, "k+", label="Daten: Kugel") # <4-4> ax.errorbar(noms(h_b_mean), noms(t_b_mean), yerr=stds(t_b_mean), fmt="k+", label="Daten: Kugel") # <5-> -ax.plot(h_plot, fit_I_cylinder(h_plot, *params), label="Fit") # <4-> +ax.plot(h_plot, fit_I_ball(h_plot, *params), label="Fit") # <4-> ax.legend() # <4-> fig.savefig("plot-I_kugel.pdf") # <4-> # <2->