Skip to content

Commit 4a3b780

Browse files
committed
Fix comment
1 parent 63cf7f3 commit 4a3b780

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

azure/durable_functions/models/DurableOrchestrationContext.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -775,8 +775,9 @@ def version(self) -> str:
775775

776776
@staticmethod
777777
def _extract_version_from_history(history_events: List[HistoryEvent]) -> str:
778-
"""Extract the version from the execution started event in history,
779-
or None if not found.
778+
"""Extract the version from the execution started event in history.
779+
780+
Returns None if not found.
780781
"""
781782
for event in history_events:
782783
if event.event_type == HistoryEventType.EXECUTION_STARTED:

0 commit comments

Comments
 (0)