Skip to content

Commit

Permalink
Remove on_run_model_update unused signal
Browse files Browse the repository at this point in the history
The rest of the functionality was removed in 8c16ed9
  • Loading branch information
andreas-el committed Oct 1, 2024
1 parent 5dbf437 commit dc69854
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/ert/gui/simulation/run_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ def mouseMoveEvent(self, event: QMouseEvent | None) -> None:
class RunDialog(QDialog):
simulation_done = Signal(bool, str)
produce_clipboard_debug_info = Signal()
on_run_model_event = Signal(object)
_RUN_TIME_POLL_RATE = 1000

def __init__(
Expand Down Expand Up @@ -305,8 +304,6 @@ def __init__(
self.setMinimumSize(self._minimum_width, self._minimum_height)
self.finished.connect(self._on_finished)

self.on_run_model_event.connect(self._on_event)

def _current_tab_changed(self, index: int) -> None:
widget = self._tab_widget.widget(index)
self.fm_step_frame.setHidden(isinstance(widget, UpdateWidget))
Expand Down

0 comments on commit dc69854

Please sign in to comment.