Skip to content

Commit

Permalink
Add settings initialization method
Browse files Browse the repository at this point in the history
  • Loading branch information
edan-bainglass committed Sep 4, 2023
1 parent 0df9d59 commit ee38ef3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion aurora/experiment/tomato/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ def __init__(self, validate_callback_f):
],
),
]
self._build_job_monitor_parameters()

# setup automations
# job monitored checkbox
Expand All @@ -148,6 +147,12 @@ def __init__(self, validate_callback_f):

self.reset_button.on_click(self.reset)

self.init()

def init(self) -> None:
"""Initialize widget."""
self._build_job_monitor_parameters()

@property
@remove_empties_from_dict_decorator
def selected_monitor_settings(self):
Expand Down

0 comments on commit ee38ef3

Please sign in to comment.