Skip to content

Commit 63cf7f3

Browse files
committed
Fix comment
1 parent 66939aa commit 63cf7f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

azure/durable_functions/models/DurableOrchestrationContext.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +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, or None if not found."""
778+
"""Extract the version from the execution started event in history,
779+
or None if not found.
780+
"""
779781
for event in history_events:
780782
if event.event_type == HistoryEventType.EXECUTION_STARTED:
781783
return event.Version

0 commit comments

Comments
 (0)