Skip to content
Snippets Groups Projects
Commit 3d236dda authored by Lan Dam's avatar Lan Dam
Browse files

convert dic_keys to list to reduce code warning

parent fcc3b608
No related branches found
No related tags found
1 merge request!128plot SOH channels in user's order
Pipeline #2761 passed with stage
in 2 minutes and 53 seconds
...@@ -121,9 +121,9 @@ class MultiThreadedPlottingWidget(PlottingWidget): ...@@ -121,9 +121,9 @@ class MultiThreadedPlottingWidget(PlottingWidget):
chan_order = self.pref_order if self.pref_order \ chan_order = self.pref_order if self.pref_order \
else sorted(list(plotting_data.keys())) else sorted(list(plotting_data.keys()))
chan_order = replace_actual_question_chans( chan_order = replace_actual_question_chans(
chan_order, plotting_data.keys()) chan_order, list(plotting_data.keys()))
chan_order = remove_not_found_chans( chan_order = remove_not_found_chans(
chan_order, plotting_data.keys(), self.processing_log) chan_order, list(plotting_data.keys()), self.processing_log)
not_plot_chans = [] not_plot_chans = []
for chan_id in chan_order: for chan_id in chan_order:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment