(self, x, y)
| 102 | print("Example 9") |
| 103 | class BetterClass: |
| 104 | def __init__(self, x, y): |
| 105 | self.x = x |
| 106 | self.y = y |
| 107 | |
| 108 | def __repr__(self): |
| 109 | return f"BetterClass({self.x!r}, {self.y!r})" |
nothing calls this directly
no outgoing calls
no test coverage detected