(self)
| 239 | return app |
| 240 | |
| 241 | def disable_qt5(self): |
| 242 | if GUI_QT5 in self._apps: |
| 243 | self._apps[GUI_QT5]._in_event_loop = False |
| 244 | self.clear_inputhook() |
| 245 | |
| 246 | def enable_qt6(self, app=None): |
| 247 | from pydev_ipython.inputhookqt6 import create_inputhook_qt6 |
nothing calls this directly
no test coverage detected