(self, f: float)
| 66 | return Point(self.x * f, self.y * f) |
| 67 | |
| 68 | def __rmul__(self, f: float) -> Point: |
| 69 | return self * f |
| 70 | |
| 71 | def __truediv__(self, f: float) -> Point: |
| 72 | return Point(self.x / f, self.y / f) |
nothing calls this directly
no outgoing calls
no test coverage detected