Skip to content

Commit

Permalink
Fix broken docstring formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavison committed Dec 18, 2024
1 parent 2458566 commit cdffda0
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions temporalio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -896,12 +896,13 @@ async def execute_update_with_start_workflow( # type: ignore
Args:
update: Update function or name on the workflow. arg: Single argument to the
update. args: Multiple arguments to the update. Cannot be set if arg is.
update.
args: Multiple arguments to the update. Cannot be set if arg is.
start_workflow_operation: a WithStartWorkflowOperation definining the
WorkflowIDConflictPolicy and how to start the workflow in the event that a
workflow is started.
id: ID of the update. If not set, the default is a new UUID. result_type: For
string updates, this can set the specific result
id: ID of the update. If not set, the default is a new UUID.
result_type: For string updates, this can set the specific result
type hint to deserialize into.
rpc_metadata: Headers used on the RPC call. Keys here override
client-level RPC metadata keys.
Expand Down Expand Up @@ -1019,15 +1020,16 @@ async def start_update_with_start_workflow( # type: ignore
Args:
update: Update function or name on the workflow. arg: Single argument to the
update. args: Multiple arguments to the update. Cannot be set if arg is.
update.
args: Multiple arguments to the update. Cannot be set if arg is.
start_workflow_operation: a WithStartWorkflowOperation definining the
WorkflowIDConflictPolicy and how to start the workflow in the event that a
workflow is started.
wait_for_stage: Required stage to wait until returning: either ACCEPTED or
COMPLETED. ADMITTED is not currently supported. See
https://docs.temporal.io/workflows#update for more details.
id: ID of the update. If not set, the default is a new UUID. result_type: For
string updates, this can set the specific result
id: ID of the update. If not set, the default is a new UUID.
result_type: For string updates, this can set the specific result
type hint to deserialize into.
rpc_metadata: Headers used on the RPC call. Keys here override
client-level RPC metadata keys.
Expand Down

0 comments on commit cdffda0

Please sign in to comment.