(self, positive, negative, point)
| 163 | """ |
| 164 | |
| 165 | def __init__(self, positive, negative, point): |
| 166 | self.positive = positive |
| 167 | self.negative = negative |
| 168 | self.point = point |
| 169 | |
| 170 | def __iter__(self): |
| 171 | for v in self.__dict__.values(): |
nothing calls this directly
no outgoing calls
no test coverage detected