| 306 | |
| 307 | |
| 308 | class Group: |
| 309 | def __init__(self, rhs: Rhs): |
| 310 | self.rhs = rhs |
| 311 | |
| 312 | def __str__(self) -> str: |
| 313 | return f"({self.rhs})" |
| 314 | |
| 315 | def __repr__(self) -> str: |
| 316 | return f"Group({self.rhs!r})" |
| 317 | |
| 318 | def __iter__(self) -> Iterator[Rhs]: |
| 319 | yield self.rhs |
| 320 | |
| 321 | |
| 322 | class Cut: |
no outgoing calls
no test coverage detected
searching dependent graphs…