dag: change initial frontier selection heuristic
[git-cola.git] / qtpy / QtSvg.py
blob10e41831396ae15f4e395042e5ca1be62a419451
1 # -*- coding: utf-8 -*-
3 # Copyright © 2009- The Spyder Development Team
4 # Licensed under the terms of the MIT License
5 # (see LICENSE.txt for details)
7 """
8 Provides QtSvg classes and functions.
9 """
11 from qtpy import PYQT5, PYQT4, PYSIDE, PythonQtError
14 if PYQT5:
15 from PyQt5.QtSvg import *
16 elif PYQT4:
17 from PyQt4.QtSvg import *
18 elif PYSIDE:
19 from PySide.QtSvg import *
20 else:
21 raise PythonQtError('No Qt bindings could be found')