Skip to content

Commit

Permalink
Fix some issues reported by Ruff
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Hawkins <sjjhsjjhsjjh@gmail.com>
  • Loading branch information
sjjhsjjh committed May 3, 2024
1 parent 3da3133 commit b97773c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/pages/page_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#
# Type hints module.
# https://docs.python.org/3/library/typing.html#typing.NamedTuple
from typing import NamedTuple, Callable, Optional, Any
from typing import NamedTuple, Callable, Any
#
# Browser launcher module.
# https://docs.python.org/3/library/webbrowser.html
Expand Down Expand Up @@ -213,7 +213,7 @@ def check_updates(self, event, anchor):

def install_update(self, event, anchor):
logger.info(f'install_update(,{event.type=},{anchor=})')
launched = UpdateManager().launch_installer()
UpdateManager().launch_installer()

def enter(self):
super().enter()
Expand Down

0 comments on commit b97773c

Please sign in to comment.