CHANGES: link to the PR for the git-cola-sequence-editor correction
[git-cola.git] / qtpy / QtStateMachine.py
blob343ce4a32133eac8202faaf8754121ccc0fffb19
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 QtStateMachine classes and functions."""
10 from . import (
11 PYQT5,
12 PYQT6,
13 PYSIDE2,
14 PYSIDE6,
15 QtBindingMissingModuleError,
18 if PYQT5 or PYQT6 or PYSIDE2:
19 raise QtBindingMissingModuleError(name="QtStateMachine")
20 elif PYSIDE6:
21 from PySide6.QtStateMachine import *