File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2479,8 +2479,6 @@ def __init__(
24792479 temporalio .workflow ._Definition .get_name_and_result_type (workflow )
24802480 )
24812481
2482- self ._id = id
2483- self ._workflow_handle : Future [WorkflowHandle [SelfType , ReturnType ]] = Future ()
24842482 self ._start_workflow_input = UpdateWithStartStartWorkflowInput (
24852483 workflow = name ,
24862484 args = temporalio .common ._arg_or_args (arg , args ),
@@ -2508,6 +2506,8 @@ def __init__(
25082506 # self._result_type = None
25092507 # self.__temporal_eagerly_started = False
25102508
2509+ self ._workflow_handle : Future [WorkflowHandle [SelfType , ReturnType ]] = Future ()
2510+
25112511 async def workflow_handle (self ) -> WorkflowHandle [SelfType , ReturnType ]:
25122512 return await self ._workflow_handle
25132513
@@ -5128,8 +5128,8 @@ class UpdateWithStartStartWorkflowInput:
51285128class StartWorkflowUpdateWithStartInput :
51295129 """Input for :py:meth:`OutboundInterceptor.start_workflow_update_with_start`."""
51305130
5131- update_workflow_input : UpdateWithStartUpdateWorkflowInput
51325131 start_workflow_input : UpdateWithStartStartWorkflowInput
5132+ update_workflow_input : UpdateWithStartUpdateWorkflowInput
51335133
51345134
51355135@dataclass
You can’t perform that action at this time.
0 commit comments