Remove dead code (#17899)

This commit is contained in:
Yongtao Huang
2025-04-11 20:33:52 +08:00
committed by GitHub
parent 08a693a0a0
commit 5d72003ebb
15 changed files with 4 additions and 66 deletions

View File

@@ -1,13 +0,0 @@
from typing import Optional
from pydantic import BaseModel
from core.workflow.graph_engine.entities.graph import GraphParallel
class NextGraphNode(BaseModel):
node_id: str
"""next node id"""
parallel: Optional[GraphParallel] = None
"""parallel"""