Skip to content

Commit 66939aa

Browse files
committed
Fix comment
1 parent d3415c4 commit 66939aa

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
@@ -775,7 +775,7 @@ 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, or None if not found."""
779779
for event in history_events:
780780
if event.event_type == HistoryEventType.EXECUTION_STARTED:
781781
return event.Version

0 commit comments

Comments
 (0)