(self)
| 5 | self.z = z if z is not None else 0 |
| 6 | |
| 7 | def __str__(self): |
| 8 | return f"D({self.x}, {self.y}, {self.z})" |
| 9 | |
| 10 | def __add__(self, rh): |
| 11 | return D(self.x + rh.x, self.y + rh.y, self.z + rh.z) |
nothing calls this directly
no outgoing calls
no test coverage detected