Skip to content

Commit

Permalink
Merge pull request #1849 from meeseeksmachine/auto-backport-of-pr-184…
Browse files Browse the repository at this point in the history
…4-on-v3.1.x

Backport PR #1844 on branch v3.1.x (FIX: added missing comma in choices for trace peak method)
  • Loading branch information
pllim authored Nov 16, 2022
2 parents 3d683b4 + 9384b3e commit 12ee569
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 12ee569

Please sign in to comment.