We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66939aa commit 63cf7f3Copy full SHA for 63cf7f3
azure/durable_functions/models/DurableOrchestrationContext.py
@@ -775,7 +775,9 @@ def version(self) -> str:
775
776
@staticmethod
777
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."""
+ """Extract the version from the execution started event in history,
779
+ or None if not found.
780
+ """
781
for event in history_events:
782
if event.event_type == HistoryEventType.EXECUTION_STARTED:
783
return event.Version
0 commit comments