garden: use 4-space indents
[git-cola.git] / qtpy / Qt3DCore.py
blob5c15df19a354c23a9c2b1408b20d2fa6f5a855a0
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 Qt3DCore classes and functions."""
10 from . import (
11 PYQT5,
12 PYQT6,
13 PYSIDE2,
14 PYSIDE6,
15 QtModuleNotInstalledError,
18 if PYQT5:
19 try:
20 from PyQt5.Qt3DCore import *
21 except ModuleNotFoundError as error:
22 raise QtModuleNotInstalledError(
23 name="Qt3DCore",
24 missing_package="PyQt3D",
25 ) from error
26 elif PYQT6:
27 try:
28 from PyQt6.Qt3DCore import *
29 except ModuleNotFoundError as error:
30 raise QtModuleNotInstalledError(
31 name="Qt3DCore",
32 missing_package="PyQt6-3D",
33 ) from error
34 elif PYSIDE2:
35 # https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1026
36 import inspect
38 import PySide2.Qt3DCore as __temp
40 for __name in inspect.getmembers(__temp.Qt3DCore):
41 globals()[__name[0]] = __name[1]
42 elif PYSIDE6:
43 # https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-1026
44 import inspect
46 import PySide6.Qt3DCore as __temp
48 for __name in inspect.getmembers(__temp.Qt3DCore):
49 globals()[__name[0]] = __name[1]