Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
rosteen committed Dec 11, 2023
1 parent 59d5e01 commit 7536b81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jdaviz/configs/default/plugins/plot_options/plot_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,10 +709,10 @@ def _sync_sv_limits(self, msg={}):
self.send_state("spectrum_viewer_limits")

def vue_apply_updated_bounds(self, msg={}):
self.spectrum_viewer.set_limits(x_min = self.spectrum_viewer_limits["x_min"]["value"],
x_max = self.spectrum_viewer_limits["x_max"]["value"],
y_min = self.spectrum_viewer_limits["y_min"]["value"],
y_max = self.spectrum_viewer_limits["y_max"]["value"],)
self.spectrum_viewer.set_limits(x_min=self.spectrum_viewer_limits["x_min"]["value"],
x_max=self.spectrum_viewer_limits["x_max"]["value"],
y_min=self.spectrum_viewer_limits["y_min"]["value"],
y_max=self.spectrum_viewer_limits["y_max"]["value"],)

@observe('is_active', 'layer_selected', 'viewer_selected',
'stretch_hist_zoom_limits')
Expand Down

0 comments on commit 7536b81

Please sign in to comment.