Skip to content

Commit

Permalink
Bump version to 0.24.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hosaka committed Sep 26, 2023
1 parent 0167a39 commit dfa836b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qasync/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"Mark Harviston <[email protected]>, "
"Arve Knudsen <[email protected]>",
)
__version__ = "0.24.0"
__version__ = "0.24.2"
__url__ = "https://github.com/CabbageDevelopment/qasync"
__license__ = "BSD"
__all__ = ["QEventLoop", "QThreadExecutor", "asyncSlot", "asyncClose"]
Expand Down Expand Up @@ -378,7 +378,7 @@ def run_forever(self):
self.__log_debug("Starting Qt event loop")
asyncio.events._set_running_loop(self)
rslt = -1
if hasattr(self.__app, 'exec_'):
if hasattr(self.__app, "exec_"):
rslt = self.__app.exec_()
else:
rslt = self.__app.exec()
Expand Down

0 comments on commit dfa836b

Please sign in to comment.