From 477aa31afeae65a0d0facb8a85662736168dba23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Loren=20=E2=98=BA=EF=B8=8F?= <251288+lorensr@users.noreply.github.com> Date: Mon, 4 Mar 2024 20:08:50 -0500 Subject: [PATCH] Fix execute_child_workflow apidoc (#483) --- temporalio/workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temporalio/workflow.py b/temporalio/workflow.py index 47fc158d..63dc1c02 100644 --- a/temporalio/workflow.py +++ b/temporalio/workflow.py @@ -3847,7 +3847,7 @@ async def execute_child_workflow( ) -> Any: """Start a child workflow and wait for completion. - This is a shortcut for ``await`` :py:meth:`start_child_workflow`. + This is a shortcut for ``await (await`` :py:meth:`start_child_workflow` ``)``. """ temporalio.common._warn_on_deprecated_search_attributes(search_attributes) # We call the runtime directly instead of top-level start_child_workflow to