Skip to content

Commit

Permalink
fixing type-check issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tnixon committed Oct 31, 2024
1 parent 11f51cd commit 1f16859
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tempo/ml.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import List, Tuple
from typing import Any, List, Tuple
from functools import reduce

from pyspark.sql import DataFrame
Expand Down Expand Up @@ -39,7 +39,7 @@ def __init__(
timeSeriesCol: str = "event_ts",
seriesIdCols: List[str] = [],
gap: int = 0,
**other_kwargs
**other_kwargs: Any
) -> None:
super(TimeSeriesCrossValidator, self).__init__(**other_kwargs)
self._setDefault(timeSeriesCol="event_ts", seriesIdCols=[], gap=0)
Expand Down

0 comments on commit 1f16859

Please sign in to comment.