Skip to content

Commit

Permalink
Pre-commit auto-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Dec 5, 2024
1 parent 30dd8db commit c6fc113
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/globalCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ def script_cycleAudioDuckingMode(self, gesture):
def script_toggleInputHelp(self, gesture):
inputCore.manager.isInputHelpActive = not inputCore.manager.isInputHelpActive
# Translators: This will be presented when the input help is toggled.
stateOn = _("input help on. Press {gestureKeys} again to turn it off.").format(gestureKeys=gesture.displayName)
stateOn = _("input help on. Press {gestureKeys} again to turn it off.").format(
gestureKeys=gesture.displayName
)
# Translators: This will be presented when the input help is toggled.
stateOff = _("input help off")
state = stateOn if inputCore.manager.isInputHelpActive else stateOff
Expand Down

0 comments on commit c6fc113

Please sign in to comment.