fix: Access topological_order directly from engine, not from non-existent validator attribute
All checks were successful
Deploy Development / deploy (push) Successful in 50s
Build Test / lint-backend (push) Successful in 1s
Build Test / build-frontend (push) Successful in 14s

This commit is contained in:
Lars 2026-04-03 21:38:45 +02:00
parent ac2e7cf5bb
commit acd4830795

View File

@ -423,5 +423,5 @@ def get_execution_order(graph: WorkflowGraph) -> List[str]:
['start', 'end']
"""
engine = WorkflowEngine(graph)
# Nutze Validator's topological_order (flattened)
return engine.validator.topological_order
# Nutze topological_order (flattened)
return engine.topological_order