(repr_traceback_dict)
| 646 | return reprentry |
| 647 | |
| 648 | def deserialize_repr_traceback(repr_traceback_dict): |
| 649 | repr_traceback_dict["reprentries"] = [ |
| 650 | deserialize_repr_entry(x) for x in repr_traceback_dict["reprentries"] |
| 651 | ] |
| 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: |
no test coverage detected