Skip to content

Commit dfa836b

Browse files
committed
Bump version to 0.24.2
1 parent 0167a39 commit dfa836b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qasync/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"Mark Harviston <[email protected]>, "
1515
"Arve Knudsen <[email protected]>",
1616
)
17-
__version__ = "0.24.0"
17+
__version__ = "0.24.2"
1818
__url__ = "https://github.com/CabbageDevelopment/qasync"
1919
__license__ = "BSD"
2020
__all__ = ["QEventLoop", "QThreadExecutor", "asyncSlot", "asyncClose"]
@@ -378,7 +378,7 @@ def run_forever(self):
378378
self.__log_debug("Starting Qt event loop")
379379
asyncio.events._set_running_loop(self)
380380
rslt = -1
381-
if hasattr(self.__app, 'exec_'):
381+
if hasattr(self.__app, "exec_"):
382382
rslt = self.__app.exec_()
383383
else:
384384
rslt = self.__app.exec()

0 commit comments

Comments
 (0)