Skip to content

Commit

Permalink
auto_update_results as an optional traitlet for AddResults
Browse files Browse the repository at this point in the history
  • Loading branch information
kecnry committed Mar 19, 2024
1 parent 7014ea7 commit 325792c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions jdaviz/core/template_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -3279,9 +3279,7 @@ class AddResults(BasePluginComponent):
* ``viewer`` (`ViewerSelect`):
the viewer to add the results, or None to add the results to the data-collection but
not load into a viewer.
"""
"""
Traitlets (in the object, custom traitlets in the plugin):
* ``label`` (string: user-provided label for the results data-entry. If ``label_auto``, changes
Expand Down Expand Up @@ -3328,7 +3326,7 @@ class AddResults(BasePluginComponent):
def __init__(self, plugin, label, label_default, label_auto,
label_invalid_msg, label_overwrite,
add_to_viewer_items, add_to_viewer_selected,
auto_update_result,
auto_update_result=None,
label_whitelist_overwrite=[]):
super().__init__(plugin, label=label,
label_default=label_default, label_auto=label_auto,
Expand Down

0 comments on commit 325792c

Please sign in to comment.