widgets: flake8 and pylint fixes
[git-cola.git] / qtpy / QtQuick3D.py
blobeeb0a60c2d1487305787961894a553092c3d27db
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 QtQuick3D classes and functions."""
10 from . import (
11 PYQT5,
12 PYQT6,
13 PYSIDE2,
14 PYSIDE6,
15 QtBindingMissingModuleError,
18 if PYQT5:
19 from PyQt5.QtQuick3D import *
20 elif PYQT6:
21 from PyQt6.QtQuick3D import *
22 elif PYSIDE2:
23 raise QtBindingMissingModuleError(name='QtQuick3D')
24 elif PYSIDE6:
25 from PySide6.QtQuick3D import *