From 45101f705df66dd530b403d9a42bd5dbf654bea6 Mon Sep 17 00:00:00 2001 From: Michael Manganiello Date: Tue, 23 Jan 2024 13:28:15 -0300 Subject: [PATCH] fix: Remove incorrect trailing comma `flake8` is triggering this warning. --- kats/detectors/detector_consts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kats/detectors/detector_consts.py b/kats/detectors/detector_consts.py index a52235c58..d519d2ef8 100644 --- a/kats/detectors/detector_consts.py +++ b/kats/detectors/detector_consts.py @@ -615,7 +615,7 @@ def inplace_update( self._inplace_update_ts(self.scores, time, score) cb = self.confidence_band if cb is not None: - self._inplace_update_ts(cb.lower, time, ci_lower), + self._inplace_update_ts(cb.lower, time, ci_lower) self._inplace_update_ts(cb.upper, time, ci_upper) if self.predicted_ts is not None: