hotkeys: make Cmd-M minimize the main window
[git-cola.git] / qtpy / QtRemoteObjects.py
blob1035586b455cabcdcb1be730137b3f182ca13d37
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 QtRemoteObjects classes and functions."""
10 from . import PYQT5, PYQT6, PYSIDE2, PYSIDE6
12 if PYQT5:
13 from PyQt5.QtRemoteObjects import *
14 elif PYQT6:
15 from PyQt6.QtRemoteObjects import *
16 elif PYSIDE6:
17 from PySide6.QtRemoteObjects import *
18 elif PYSIDE2:
19 from PySide2.QtRemoteObjects import *