(repr_crash_dict: dict[str, Any] | None)
| 652 | return ReprTraceback(**repr_traceback_dict) |
| 653 | |
| 654 | def deserialize_repr_crash(repr_crash_dict: dict[str, Any] | None): |
| 655 | if repr_crash_dict is not None: |
| 656 | return ReprFileLocation(**repr_crash_dict) |
| 657 | else: |
| 658 | return None |
| 659 | |
| 660 | if ( |
| 661 | reportdict["longrepr"] |
no test coverage detected