(self, x, y, z)
| 1 | class Vector: |
| 2 | def __init__(self, x, y, z): |
| 3 | self.x = x |
| 4 | self.y = y |
| 5 | self.z = z |
| 6 | |
| 7 | def __add__(self, other): |
| 8 | result = Vector(self.x + other.x, self.y + other.y, self.z + other.z) |
nothing calls this directly
no outgoing calls
no test coverage detected