(_win, _pspec)
| 61 | |
| 62 | def do_activate(self): |
| 63 | def on_translator_loading(_win, _pspec): |
| 64 | if self.window and not self.window.translator_loading: |
| 65 | # Remove signal handler |
| 66 | if self._signal_handler: |
| 67 | self.window.disconnect(self._signal_handler) |
| 68 | # Process CLI args |
| 69 | self.process_command_line() |
| 70 | |
| 71 | self.window = self.props.active_window # type: ignore |
| 72 |
nothing calls this directly
no test coverage detected