Chore: use Workflow.VERSION_DRAFT instead of hardcoded draft (#23136)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
Yongtao Huang
2025-07-30 10:34:51 +08:00
committed by GitHub
parent f17ca26b10
commit ab163a5f75
3 changed files with 11 additions and 9 deletions

View File

@@ -142,7 +142,7 @@ class WorkflowTool(Tool):
if not version:
workflow = (
db.session.query(Workflow)
.where(Workflow.app_id == app_id, Workflow.version != "draft")
.where(Workflow.app_id == app_id, Workflow.version != Workflow.VERSION_DRAFT)
.order_by(Workflow.created_at.desc())
.first()
)