Skip to content

Commit 23fdd06

Browse files
committed
lint fix for long line
1 parent 2db32a1 commit 23fdd06

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

addon/globalPlugins/MathCAT/MathCATPreferences.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,9 @@ def set_ui_values(self):
396396
"Error when setting SpeechStyle for " + self.m_choiceLanguage.GetStringSelection()
397397
)
398398
# set the rest of the UI elements
399-
self.m_choiceDecimalSeparator.SetSelection(Speech_DecimalSeparator.index(user_preferences["Other"]["DecimalSeparator"]))
399+
self.m_choiceDecimalSeparator.SetSelection(
400+
Speech_DecimalSeparator.index(user_preferences["Other"]["DecimalSeparator"])
401+
)
400402
self.m_choiceSpeechAmount.SetSelection(Speech_Verbosity.index(user_preferences["Speech"]["Verbosity"]))
401403
self.m_sliderRelativeSpeed.SetValue(user_preferences["Speech"]["MathRate"])
402404
pause_factor = (

0 commit comments

Comments
 (0)