From 5815b0ce52e6a871cdae7651a89e22937874d557 Mon Sep 17 00:00:00 2001 From: ldam <ldam@passcal.nmt.edu> Date: Thu, 24 Aug 2023 13:07:43 -0600 Subject: [PATCH] fix typo in variable names --- .../view/plotting/plotting_widget/plotting_axes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sohstationviewer/view/plotting/plotting_widget/plotting_axes.py b/sohstationviewer/view/plotting/plotting_widget/plotting_axes.py index 8a38565ec..070cb236d 100644 --- a/sohstationviewer/view/plotting/plotting_widget/plotting_axes.py +++ b/sohstationviewer/view/plotting/plotting_widget/plotting_axes.py @@ -240,7 +240,7 @@ class PlottingAxes: # and won't be changed in set_lim, then don't need to assign a # variable for it. # bottom - ax.bottom_total_points_lbl = ax.text( + ax.bottom_total_point_lbl = ax.text( 1.005, sample_no_pos[0], sample_no_list[0], horizontalalignment='left', @@ -251,7 +251,7 @@ class PlottingAxes: size=self.parent.font_size ) # top - ax.top_total_points_lbl = ax.text( + ax.top_total_point_lbl = ax.text( 1.005, sample_no_pos[1], sample_no_list[1], horizontalalignment='left', -- GitLab