From b2f009bc99ac1a05fac9c1a40a7ca0463dcd29be Mon Sep 17 00:00:00 2001 From: ldam <ldam@passcal.nmt.edu> Date: Thu, 17 Aug 2023 14:45:43 -0600 Subject: [PATCH] change variable name to be more descriptive --- sohstationviewer/view/util/functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sohstationviewer/view/util/functions.py b/sohstationviewer/view/util/functions.py index 2d50ff1c6..4d3ea6d2d 100644 --- a/sohstationviewer/view/util/functions.py +++ b/sohstationviewer/view/util/functions.py @@ -358,8 +358,8 @@ def replace_actual_quest_chans( :return: chan_order that have channels end with '?' replaced by actual channels. """ - quest_chans = [c for c in chan_order if c.endswith('?')] - for qc in quest_chans: + question_chans = [c for c in chan_order if c.endswith('?')] + for qc in question_chans: actual_quest_chans = [c for c in list(actual_chans) if qc[:-1] == c[:-1]] if actual_quest_chans: -- GitLab