(self)
| 34 | """ |
| 35 | |
| 36 | def __init__(self) -> None: |
| 37 | self.args: Optional["threading.ExceptHookArgs"] = None |
| 38 | self._old_hook: Optional[Callable[["threading.ExceptHookArgs"], Any]] = None |
| 39 | |
| 40 | def _hook(self, args: "threading.ExceptHookArgs") -> None: |
| 41 | self.args = args |
nothing calls this directly
no outgoing calls
no test coverage detected