File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 14
14
"Mark Harviston <mark.harviston@gmail.com>, "
15
15
"Arve Knudsen <arve.knudsen@gmail.com>" ,
16
16
)
17
- __version__ = "0.12 .0"
17
+ __version__ = "0.13 .0"
18
18
__url__ = "https://github.com/CabbageDevelopment/qasync"
19
19
__license__ = "BSD"
20
20
__all__ = ["QEventLoop" , "QThreadExecutor" , "asyncSlot" , "asyncClose" ]
85
85
if QtModuleName == "PyQt5" :
86
86
from PyQt5 import QtWidgets
87
87
from PyQt5 .QtCore import pyqtSlot as Slot
88
+
88
89
QApplication = QtWidgets .QApplication
89
-
90
+
90
91
elif QtModuleName == "PySide2" :
91
92
from PySide2 import QtWidgets
92
93
from PySide2 .QtCore import Slot
94
+
93
95
QApplication = QtWidgets .QApplication
94
-
96
+
95
97
elif QtModuleName == "PySide6" :
96
98
from PySide6 import QtWidgets
97
99
from PySide6 .QtCore import Slot
100
+
98
101
QApplication = QtWidgets .QApplication
99
102
100
103
from ._common import with_logger # noqa
You can’t perform that action at this time.
0 commit comments