Skip to content

Commit

Permalink
Backport PR #1844: FIX: added missing comma in choices for trace peak…
Browse files Browse the repository at this point in the history
… method
  • Loading branch information
pllim authored and meeseeksmachine committed Nov 16, 2022
1 parent 3d683b4 commit 9384b3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Specviz
Specviz2d
^^^^^^^^^

- Fixed options for peak method in spectral extraction plugin. [#1844]

3.1 (2022-10-26)
================

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def __init__(self, *args, **kwargs):
self.trace_peak_method = SelectPluginComponent(self,
items='trace_peak_method_items',
selected='trace_peak_method_selected',
manual_options=['Gaussian', 'Centroid' 'Max']) # noqa
manual_options=['Gaussian', 'Centroid', 'Max']) # noqa

self.trace_add_results = AddResults(self, 'trace_results_label',
'trace_results_label_default',
Expand Down

0 comments on commit 9384b3e

Please sign in to comment.