We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ab162 commit e8b3925Copy full SHA for e8b3925
temporalio/workflow.py
@@ -5204,12 +5204,14 @@ async def execute_operation(
5204
],
5205
input: I,
5206
*,
5207
+ output_type: Optional[Type[O]] = None,
5208
schedule_to_close_timeout: Optional[timedelta] = None,
5209
headers: Optional[Mapping[str, str]] = None,
5210
) -> O:
5211
handle: NexusOperationHandle[O] = await self.start_operation(
5212
operation,
5213
input,
5214
+ output_type=output_type,
5215
schedule_to_close_timeout=schedule_to_close_timeout,
5216
headers=headers,
5217
)
0 commit comments