(self)
| 258 | """ |
| 259 | |
| 260 | def __init__(self): |
| 261 | self.data_points = [] |
| 262 | self.num_gt_positives = 0 |
| 263 | |
| 264 | def push(self, score: float, is_true: bool): |
| 265 | self.data_points.append((score, is_true)) |
nothing calls this directly
no outgoing calls
no test coverage detected