| 955 | if __name__ == "__main__": # pragma: no cover |
| 956 | |
| 957 | class BrokenRepr: |
| 958 | def __repr__(self) -> str: |
| 959 | 1 / 0 |
| 960 | return "this will fail" |
| 961 | |
| 962 | from typing import NamedTuple |
| 963 |
no outgoing calls
no test coverage detected
searching dependent graphs…