(self)
| 111 | self.constructions.append(Construction(name, args)) |
| 112 | |
| 113 | def txt(self) -> str: |
| 114 | return ( |
| 115 | ' '.join(self.points) |
| 116 | + ' = ' |
| 117 | + ', '.join(c.txt() for c in self.constructions) |
| 118 | ) |
| 119 | |
| 120 | |
| 121 | def _gcd(x: int, y: int) -> int: |
no outgoing calls
no test coverage detected