Skip to content

Commit

Permalink
fix(agents-api): Fix update task query
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad-mtos committed Dec 26, 2024
1 parent 6a5fe63 commit e155bb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion agents-api/agents_api/queries/tasks/patch_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ async def patch_task(
workflow_name, # $3
step_idx, # $4
step["kind_"], # $5
step[step["kind_"]], # $6
step, # $6
]
)

Expand Down
2 changes: 1 addition & 1 deletion agents-api/agents_api/queries/tasks/update_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ async def update_task(
workflow_name, # $3
step_idx, # $4
step["kind_"], # $5
step[step["kind_"]], # $6
step, # $6
]
)

Expand Down

0 comments on commit e155bb5

Please sign in to comment.