- added qdarktheme package into the code
This commit is contained in:
13
libs/qdarktheme/qtpy/QtSvg/__init__.py
Normal file
13
libs/qdarktheme/qtpy/QtSvg/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""Module for QtSvg."""
|
||||
from libs.qdarktheme.qtpy.qt_compat import QT_API, qt_import_error
|
||||
|
||||
if QT_API is None:
|
||||
raise qt_import_error
|
||||
if QT_API == "PySide6":
|
||||
from PySide6.QtSvg import * # type: ignore # noqa: F403
|
||||
elif QT_API == "PyQt6":
|
||||
from PyQt6.QtSvg import * # type: ignore # noqa: F403
|
||||
elif QT_API == "PyQt5":
|
||||
from PyQt5.QtSvg import * # type: ignore # noqa: F403
|
||||
elif QT_API == "PySide2":
|
||||
from PySide2.QtSvg import * # type: ignore # noqa: F403
|
||||
Reference in New Issue
Block a user