(self)
| 255 | return app |
| 256 | |
| 257 | def disable_qt6(self): |
| 258 | if GUI_QT6 in self._apps: |
| 259 | self._apps[GUI_QT6]._in_event_loop = False |
| 260 | self.clear_inputhook() |
| 261 | |
| 262 | def enable_gtk(self, app=None): |
| 263 | """Enable event loop integration with PyGTK. |
nothing calls this directly
no test coverage detected