Skip to content

Commit

Permalink
Clarify code
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavison committed Dec 19, 2024
1 parent 5f8a7ce commit 20a4031
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion message_passing/update_with_start/lazy_init/starter.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ async def handle_add_item_request(
except WorkflowUpdateFailedError:
price = None

return price, await start_op.workflow_handle()
workflow_handle = await start_op.workflow_handle()

return price, workflow_handle


async def main():
Expand Down

0 comments on commit 20a4031

Please sign in to comment.