Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonarddeR committed Jul 25, 2023
1 parent fe18bae commit 84b3b30
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions addon/installTasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from .lib import configuration
from .lib import rdPipe
else:
import addonHandler
addon: addonHandler.Addon = addonHandler.getCodeAddon()
configuration = addon.loadModule("lib.configuration")
rdPipe = addon.loadModule("lib.rdPipe")
Expand All @@ -19,13 +18,14 @@ def onInstall():
if addon.name == "nvdaRd":
result = gui.messageBox(
# Translators: message asking the user to remove nvdaRd add-on
_("This add-on was previously called NVDA Remote Desktop. "
"You have an installed version of that add-on. "
"Would you like to update to RDAccess?"),
_(
"This add-on was previously called NVDA Remote Desktop. "
"You have an installed version of that add-on. "
"Would you like to update to RDAccess?"
),
# Translators: question title
_("Previous version detected"),
wx.YES_NO|wx.ICON_QUESTION,
gui.mainFrame
wx.YES_NO | wx.ICON_WARNING
)
if result == wx.YES:
addon.requestRemove()
Expand Down

0 comments on commit 84b3b30

Please sign in to comment.