hotkeys: use Alt-m for amend on macOS
[git-cola.git] / qtpy / QtConcurrent.py
bloba8e3ed3f8dbc8e5064d3f0951a708d59d44dd84d
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 QtConcurrent classes and functions."""
10 from . import (
11 PYQT5,
12 PYQT6,
13 PYSIDE2,
14 PYSIDE6,
15 QtBindingMissingModuleError,
18 if PYQT5 or PYQT6:
19 raise QtBindingMissingModuleError(name="QtConcurrent")
20 elif PYSIDE2:
21 from PySide2.QtConcurrent import *
22 elif PYSIDE6:
23 from PySide6.QtConcurrent import *