| 118 | |
| 119 | |
| 120 | class UnexpectedError(Exception): |
| 121 | def __init__(self, message: str, exc: Optional[Exception] = None): |
| 122 | super(UnexpectedError, self).__init__(message) |
| 123 | self.formatted_traceback = traceback.format_exc() |
| 124 | self.exc = exc |
| 125 | |
| 126 | |
| 127 | def run_clang_format_diff_wrapper(args: Any, file: str) -> tuple[list[str], list[str]]: |
no outgoing calls
no test coverage detected