(self, width, height)
| 45 | class Rect(Shape): |
| 46 | |
| 47 | def __init__(self, width, height): |
| 48 | self._width = width |
| 49 | self._height = height |
| 50 | |
| 51 | def perimeter(self): |
| 52 | return 2 * (self._width + self._height) |
nothing calls this directly
no outgoing calls
no test coverage detected