chore(api): improve type hints for BaseNode and its subclasses (#15826)

This commit is contained in:
QuantumGhost 2025-03-14 18:09:11 +08:00 committed by GitHub
commit 23ed3a520b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View file

@ -5,7 +5,7 @@ from core.workflow.nodes.loop.entities import LoopStartNodeData
from models.workflow import WorkflowNodeExecutionStatus
class LoopStartNode(BaseNode):
class LoopStartNode(BaseNode[LoopStartNodeData]):
"""
Loop Start Node.
"""