remotemessage: simplify implementation by leveraging VimTextEdit
[git-cola.git] / qtpy / QtSvgWidgets.py
blob07eedb074a770ec3874f7364c71366dc237e4f48
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 QtSvgWidgets classes and functions."""
10 from . import (
11 PYQT5,
12 PYQT6,
13 PYSIDE2,
14 PYSIDE6,
15 QtBindingMissingModuleError,
18 if PYQT5:
19 raise QtBindingMissingModuleError(name='QtSvgWidgets')
20 elif PYQT6:
21 from PyQt6.QtSvgWidgets import *
22 elif PYSIDE2:
23 raise QtBindingMissingModuleError(name='QtSvgWidgets')
24 elif PYSIDE6:
25 from PySide6.QtSvgWidgets import *