resources: search for commands sibling to the running script
[git-cola.git] / qtpy / QtQml.py
blob9d07f0e8030a2590b60c287f31a9f72f88d2064f
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 QtQml classes and functions."""
10 from . import PYQT5, PYQT6, PYSIDE2, PYSIDE6
12 if PYQT5:
13 from PyQt5.QtQml import *
14 elif PYQT6:
15 from PyQt6.QtQml import *
16 elif PYSIDE6:
17 from PySide6.QtQml import *
18 elif PYSIDE2:
19 from PySide2.QtQml import *