(a: str, b: str, c: str, d: str)
| 70 | |
| 71 | |
| 72 | def pretty2a(a: str, b: str, c: str, d: str) -> str: |
| 73 | if b in (c, d): |
| 74 | a, b = b, a |
| 75 | |
| 76 | if a == d: |
| 77 | c, d = d, c |
| 78 | |
| 79 | return f'{a} {b} {c} {d}' |
| 80 | |
| 81 | |
| 82 | def pretty_angle(a: str, b: str, c: str, d: str) -> str: |