feat(types): Resolve strict mypy errors in conductor subsystem

This commit is contained in:
2026-03-04 01:13:42 -05:00
parent 6ebbf40d9d
commit c5ee50ff0b
4 changed files with 17 additions and 16 deletions

View File

@@ -96,7 +96,7 @@ class TrackDAG:
visited = set()
stack = []
def visit(ticket_id: str):
def visit(ticket_id: str) -> None:
"""Internal recursive helper for topological sorting."""
if ticket_id in visited:
return