From be85742dee8759941d3e80bb3cdd06c89e80e88f Mon Sep 17 00:00:00 2001 From: Alexey Velikiy Date: Sat, 1 Dec 2018 18:30:43 +0300 Subject: [PATCH] fx typo in detector.py --- analytics/analytics/detectors/detector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analytics/analytics/detectors/detector.py b/analytics/analytics/detectors/detector.py index e924145..fd53693 100644 --- a/analytics/analytics/detectors/detector.py +++ b/analytics/analytics/detectors/detector.py @@ -9,7 +9,7 @@ class Detector(ABC): @abstractmethod def train(self, dataframe: DataFrame, segments: list, cache: Optional[AnalyticUnitCache]) -> AnalyticUnitCache: """ - Should be thread-safe with other detectors' train method + Should be thread-safe to other detectors' train method """ pass