garden: use 4-space indents
[git-cola.git] / qtpy / QtScxml.py
blob40da5ef7e3b1809bc6a9297afd71a0df0c84192c
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 QtScxml 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="QtScxml")
20 elif PYSIDE2:
21 from PySide2.QtScxml import *
22 elif PYSIDE6:
23 from PySide6.QtScxml import *