(module_path: str, line: int)
| 9 | |
| 10 | @contextmanager |
| 11 | def catch_errors(module_path: str, line: int) -> Iterator[None]: |
| 12 | try: |
| 13 | yield |
| 14 | except Exception: |
| 15 | crash_report(module_path, line) |
| 16 | |
| 17 | |
| 18 | def crash_report(module_path: str, line: int) -> NoReturn: |
no test coverage detected
searching dependent graphs…