fetch: add ability to fetch into a remote tracking branch
[git-cola.git] / qtpy / QtSvg.py
blob0ee4f9e149f0c5b72d3915a47a4c380d6951388d
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 QtSvg classes and functions."""
10 from . import PYQT5, PYQT6, PYSIDE2, PYSIDE6
12 if PYQT5:
13 from PyQt5.QtSvg import *
14 elif PYQT6:
15 from PyQt6.QtSvg import *
16 elif PYSIDE2:
17 from PySide2.QtSvg import *
18 elif PYSIDE6:
19 from PySide6.QtSvg import *