We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0167a39 commit dfa836bCopy full SHA for dfa836b
qasync/__init__.py
@@ -14,7 +14,7 @@
14
"Mark Harviston <mark.harviston@gmail.com>, "
15
"Arve Knudsen <arve.knudsen@gmail.com>",
16
)
17
-__version__ = "0.24.0"
+__version__ = "0.24.2"
18
__url__ = "https://github.com/CabbageDevelopment/qasync"
19
__license__ = "BSD"
20
__all__ = ["QEventLoop", "QThreadExecutor", "asyncSlot", "asyncClose"]
@@ -378,7 +378,7 @@ def run_forever(self):
378
self.__log_debug("Starting Qt event loop")
379
asyncio.events._set_running_loop(self)
380
rslt = -1
381
- if hasattr(self.__app, 'exec_'):
+ if hasattr(self.__app, "exec_"):
382
rslt = self.__app.exec_()
383
else:
384
rslt = self.__app.exec()
0 commit comments