garden: use 4-space indents
[git-cola.git] / qtpy / QtXml.py
blob5f1e3b82f44da4393b82f5373d65caaabe0f4ab0
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 QtXml classes and functions."""
10 from . import PYQT5, PYQT6, PYSIDE2, PYSIDE6
12 if PYQT5:
13 from PyQt5.QtXml import *
14 elif PYQT6:
15 from PyQt6.QtXml import *
16 elif PYSIDE2:
17 from PySide2.QtXml import *
18 elif PYSIDE6:
19 from PySide6.QtXml import *