Skip to content

Commit

Permalink
Fix slot signatures. No functional changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
soininen committed Oct 17, 2024
1 parent a5d144c commit 6043827
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spinetoolbox/spine_engine_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _handle_node_execution_started(item, direction):
icon.animation_signaller.animation_started.emit()


@Slot(object, object, object, object)
@Slot(object, object, object)
def _handle_node_execution_finished(item, direction, item_state):
icon = item.get_icon()
if direction == ExecutionDirection.FORWARD:
Expand All @@ -50,12 +50,12 @@ def _handle_node_execution_finished(item, direction, item_state):
icon.animation_signaller.animation_stopped.emit()


@Slot(object, str, str)
@Slot(object, str, str, str)
def _handle_event_message_arrived(item, filter_id, msg_type, msg_text):
item.add_event_message(filter_id, msg_type, msg_text)


@Slot(object, str, str)
@Slot(object, str, str, str)
def _handle_process_message_arrived(item, filter_id, msg_type, msg_text):
item.add_process_message(filter_id, msg_type, msg_text)

Expand Down

0 comments on commit 6043827

Please sign in to comment.