From 9d405e9cb4e7e9753fc2f2cff9eb831d9ffddb3a Mon Sep 17 00:00:00 2001 From: Gautier Portet Date: Fri, 6 Feb 2026 17:32:03 +0100 Subject: [PATCH] fix: Correct axis label (TIGI-131) --- karios/report/shift_by_alt_plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/karios/report/shift_by_alt_plot.py b/karios/report/shift_by_alt_plot.py index e46aa4f..d3e34f9 100644 --- a/karios/report/shift_by_alt_plot.py +++ b/karios/report/shift_by_alt_plot.py @@ -203,5 +203,5 @@ def _plot_alt(self, axis: Axes): # plt.axhline(-1, c="grey", lw=0.5, linestyle="--") # plt.legend(loc="upper right") - axis_right.set_ylabel("Deviation (m)", loc="center") + axis_right.set_ylabel("Deviation (px)", loc="center") axis_right.legend(loc="upper right")