Skip to content

Commit e10b757

Browse files
committed
Get rid of type hint
1 parent 56bc4d8 commit e10b757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hello_nexus/basic/caller/workflows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self):
2121
@workflow.run
2222
async def run(self, name: str) -> tuple[MyOutput, MyOutput]:
2323
# Start the Nexus operation and wait for the result in one go, using execute_operation.
24-
wf_result: MyOutput = await self.nexus_client.execute_operation(
24+
wf_result = await self.nexus_client.execute_operation(
2525
MyNexusService.my_workflow_run_operation,
2626
MyInput(name),
2727
)

0 commit comments

Comments
 (0)