Skip to content

Commit

Permalink
merge fix around order to allow vscode to render correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
gbowlin committed Jul 29, 2024
1 parent b468106 commit 305b414
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/seismometer/controls/explore.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,11 +540,12 @@ def __init__(
children=[html_title("Audit Options"), HBox(children=[self.fairness_list, self.fairness_slider])]
)
self.model_options = ModelOptionsWidget(target_names, score_names, thresholds, per_context)

super().__init__(children=[self.model_options, fairness_section], layout=BOX_GRID_LAYOUT)

self.fairness_list.observe(self._on_value_change, "value")
self.fairness_slider.observe(self._on_value_change, "value")
self.model_options.observe(self._on_value_change, "value")

super().__init__(children=[self.model_options, fairness_section], layout=BOX_GRID_LAYOUT)
self._disabled = False

@property
Expand Down

0 comments on commit 305b414

Please sign in to comment.