hotkeys: make Cmd-M minimize the main window
[git-cola.git] / qtpy / sip.py
blob205538c7e1dceec6d15c8d833786dac763e1dc6b
1 # -----------------------------------------------------------------------------
2 # Copyright © 2009- The Spyder Development Team
4 # Licensed under the terms of the MIT License
5 # (see LICENSE.txt for details)
6 # -----------------------------------------------------------------------------
8 """Provides access to sip."""
10 from . import (
11 PYQT5,
12 PYQT6,
13 PYSIDE2,
14 PYSIDE6,
15 QtBindingMissingModuleError,
18 if PYQT5:
19 from PyQt5.sip import *
20 elif PYQT6:
21 from PyQt6.sip import *
22 elif PYSIDE2 or PYSIDE6:
23 raise QtBindingMissingModuleError(name="sip")