This is an automated email from the ASF dual-hosted git repository.
Gerrrr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/otava.git
The following commit(s) were added to refs/heads/master by this push:
new 8a6353a Fix AnalyzedSeries typehint (#174)
8a6353a is described below
commit 8a6353a67f2636b4cd399428b7d3bef0840ac52b
Author: Alex Sorokoumov <[email protected]>
AuthorDate: Wed Aug 26 21:00:31 2026 -0700
Fix AnalyzedSeries typehint (#174)
---
otava/series.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/otava/series.py b/otava/series.py
index 4ddb492..897502d 100644
--- a/otava/series.py
+++ b/otava/series.py
@@ -126,7 +126,10 @@ class AnalyzedSeries:
options: AnalysisOptions
def __init__(
- self, series: Series, options: AnalysisOptions, change_points:
Dict[str, ChangePoint] = None
+ self,
+ series: Series,
+ options: AnalysisOptions,
+ change_points: Optional[ChangePointsByMetric] = None,
):
self.__series = series
self.options = options