Skip to content

Commit

Permalink
Fix arg order for clear_task_failure_reason (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
ykeremy authored Apr 24, 2024
1 parent b67fe58 commit 11e38b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skyvern/forge/sdk/db/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ async def update_step(
LOG.error("UnexpectedError", exc_info=True)
raise

async def clear_task_failure_reason(self, task_id: str, organization_id: str) -> Task:
async def clear_task_failure_reason(self, organization_id: str, task_id: str) -> Task:
try:
async with self.Session() as session:
if task := (
Expand Down

0 comments on commit 11e38b3

Please sign in to comment.