Skip to content

Commit cdffda0

Browse files
committed
Fix broken docstring formatting
1 parent 2458566 commit cdffda0

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

temporalio/client.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -896,12 +896,13 @@ async def execute_update_with_start_workflow( # type: ignore
896896
897897
Args:
898898
update: Update function or name on the workflow. arg: Single argument to the
899-
update. args: Multiple arguments to the update. Cannot be set if arg is.
899+
update.
900+
args: Multiple arguments to the update. Cannot be set if arg is.
900901
start_workflow_operation: a WithStartWorkflowOperation definining the
901902
WorkflowIDConflictPolicy and how to start the workflow in the event that a
902903
workflow is started.
903-
id: ID of the update. If not set, the default is a new UUID. result_type: For
904-
string updates, this can set the specific result
904+
id: ID of the update. If not set, the default is a new UUID.
905+
result_type: For string updates, this can set the specific result
905906
type hint to deserialize into.
906907
rpc_metadata: Headers used on the RPC call. Keys here override
907908
client-level RPC metadata keys.
@@ -1019,15 +1020,16 @@ async def start_update_with_start_workflow( # type: ignore
10191020
10201021
Args:
10211022
update: Update function or name on the workflow. arg: Single argument to the
1022-
update. args: Multiple arguments to the update. Cannot be set if arg is.
1023+
update.
1024+
args: Multiple arguments to the update. Cannot be set if arg is.
10231025
start_workflow_operation: a WithStartWorkflowOperation definining the
10241026
WorkflowIDConflictPolicy and how to start the workflow in the event that a
10251027
workflow is started.
10261028
wait_for_stage: Required stage to wait until returning: either ACCEPTED or
10271029
COMPLETED. ADMITTED is not currently supported. See
10281030
https://docs.temporal.io/workflows#update for more details.
1029-
id: ID of the update. If not set, the default is a new UUID. result_type: For
1030-
string updates, this can set the specific result
1031+
id: ID of the update. If not set, the default is a new UUID.
1032+
result_type: For string updates, this can set the specific result
10311033
type hint to deserialize into.
10321034
rpc_metadata: Headers used on the RPC call. Keys here override
10331035
client-level RPC metadata keys.

0 commit comments

Comments
 (0)