Add todo on TaskStartedEvent model

This commit is contained in:
Heitor Sammuel Carvalho
2025-12-18 10:58:54 -03:00
parent 161d317ed0
commit be9dfbc9de

View File

@@ -9,6 +9,7 @@ class TaskStartedEvent(BaseEvent):
type: str = "task_started"
context: str | None
# TODO: Type this correctly with 'Task' type, currently impossible due to circular dependency
task: Any | None = None
def __init__(self, **data):