Skip to content

Commit d768222

Browse files
committed
fix type annotation
1 parent 6d682c3 commit d768222

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure/durable_functions/models/DurableOrchestrationContext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ def new_guid(self) -> UUID:
462462
guid = uuid5(NAMESPACE_URL, guid_name)
463463
return guid
464464

465-
def _pretty_print_history(self) -> str:
465+
def _pretty_print_history(self) -> List[str]:
466466
"""Get a pretty-printed version of the orchestration's internal history."""
467467
def history_to_string(event):
468468
json_dict = {}

0 commit comments

Comments
 (0)