Makefile: remove references to unused "tags"
[git-cola.git] / qtpy / QtQuickWidgets.py
blob4ed4a21c415e1fd7be6081032c8b45a63fe7461e
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 QtQuickWidgets classes and functions."""
10 from . import PYQT5, PYQT6, PYSIDE6, PYSIDE2
12 if PYQT5:
13 from PyQt5.QtQuickWidgets import *
14 elif PYQT6:
15 from PyQt6.QtQuickWidgets import *
16 elif PYSIDE6:
17 from PySide6.QtQuickWidgets import *
18 elif PYSIDE2:
19 from PySide2.QtQuickWidgets import *