TaskRun pydantic model gets renamed to Run (#2042)

This commit is contained in:
Shuchang Zheng
2025-03-30 18:41:24 -07:00
committed by GitHub
parent 05e28931bc
commit 12ef2100b5
3 changed files with 13 additions and 13 deletions

View File

@@ -5,7 +5,7 @@ from pydantic import BaseModel, ConfigDict
from skyvern.schemas.runs import RunType
class TaskRun(BaseModel):
class Run(BaseModel):
model_config = ConfigDict(from_attributes=True)
task_run_id: str