Skip to content

Commit 344f540

Browse files
committed
Update start_new type hints to return str
1 parent 8d32b82 commit 344f540

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure/durable_functions/models/DurableOrchestrationClient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(self, context: str):
3333
async def start_new(self,
3434
orchestration_function_name: str,
3535
instance_id: str,
36-
client_input: object):
36+
client_input: object) -> str:
3737
"""Start a new instance of the specified orchestrator function.
3838
3939
If an orchestration instance with the specified ID already exists, the

0 commit comments

Comments
 (0)