Skip to content

Commit d436d48

Browse files
committed
chore: reformat
Signed-off-by: -LAN- <[email protected]>
1 parent aeb26a0 commit d436d48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/models/workflow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ class WorkflowRun(db.Model): # type: ignore[name-defined]
406406
outputs: Mapped[Optional[str]] = mapped_column(sa.Text, default="{}")
407407
error: Mapped[Optional[str]] = mapped_column(db.Text)
408408
elapsed_time = db.Column(db.Float, nullable=False, server_default=sa.text("0"))
409-
total_tokens: Mapped[int] = mapped_column(sa.BigInteger, server_default=sa.text('0'))
409+
total_tokens: Mapped[int] = mapped_column(sa.BigInteger, server_default=sa.text("0"))
410410
total_steps = db.Column(db.Integer, server_default=db.text("0"))
411411
created_by_role: Mapped[str] = mapped_column(db.String(255)) # account, end_user
412412
created_by = db.Column(StringUUID, nullable=False)

0 commit comments

Comments
 (0)