This is an automated email from the ASF dual-hosted git repository. Gerrrr pushed a commit to branch fix-typehint in repository https://gitbox.apache.org/repos/asf/otava.git
commit a90811b365b92fbda6acdaa839911f9da9412d0c Author: Alex Sorokoumov <[email protected]> AuthorDate: Wed Aug 26 20:54:43 2026 -0700 Fix AnalyzedSeries typehint --- 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
