(self, name, weight)
| 56 | print("Example 2") |
| 57 | class Tool: |
| 58 | def __init__(self, name, weight): |
| 59 | self.name = name |
| 60 | self.weight = weight |
| 61 | |
| 62 | def __repr__(self): |
| 63 | return f"Tool({self.name!r}, {self.weight})" |
nothing calls this directly
no outgoing calls
no test coverage detected