Adding error management

This commit is contained in:
2025-07-11 19:03:08 +02:00
parent 2b288348e2
commit d0f7536fa0
4 changed files with 107 additions and 26 deletions

View File

@@ -49,8 +49,9 @@ class WorkflowsDesignerState:
@dataclass
class WorkflowsPlayerSettings:
workflow_name: str = "No Name"
components: list[WorkflowComponent] = None
workflow_name: str
components: list[WorkflowComponent]
connections: list[Connection]
@dataclass