startup: open selected repository when "Enter" is pressed
[git-cola.git] / qtpy / QtWinExtras.py
blobc033ff98859b85606737c6f5fae9f47c6725300a
1 # -*- coding: utf-8 -*-
2 # -----------------------------------------------------------------------------
3 # Copyright © 2009- The Spyder Development Team
5 # Licensed under the terms of the MIT License
6 # (see LICENSE.txt for details)
8 from . import PYQT5, PYSIDE2, PythonQtError
11 if PYQT5:
12 from PyQt5.QtWinExtras import *
13 elif PYSIDE2:
14 from PySide2.QtWinExtras import *
15 else:
16 raise PythonQtError('No Qt bindings could be found')