Skip to content

Commit 82ec73d

Browse files
Fix BOCDConfig type ignore
1 parent 95f874e commit 82ec73d

File tree

1 file changed

+1
-1
lines changed
  • frouros/detectors/concept_drift/streaming/change_detection

1 file changed

+1
-1
lines changed

frouros/detectors/concept_drift/streaming/change_detection/bocd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def __init__( # noqa: D107
148148
super().__init__(
149149
min_num_instances=min_num_instances,
150150
)
151-
self.model = model
151+
self.model = model # type: ignore
152152
self.log_hazard = np.log(hazard)
153153
self.log_1_minus_hazard = np.log(1 - hazard)
154154

0 commit comments

Comments
 (0)