From c6fc113eb540957968daab79387df27c448f9a9c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 00:39:44 +0000 Subject: [PATCH] Pre-commit auto-fix --- source/globalCommands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/globalCommands.py b/source/globalCommands.py index 4b93f883fe8..f6fa3e0d78b 100755 --- a/source/globalCommands.py +++ b/source/globalCommands.py @@ -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