Skip to content

Commit fbf8bec

Browse files
committed
shorten line length to make flake8 happy
1 parent 4fb12ad commit fbf8bec

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
@@ -57,7 +57,9 @@ def __init__(self, parent):
5757

5858
# hack for "CopyAs" because its location in the prefs is not yet fixed
5959
if "CopyAs" not in user_preferences["Navigation"]:
60-
user_preferences["Navigation"]["CopyAs"] = user_preferences["Other"]["CopyAs"] if "CopyAs" in user_preferences["Other"] else "MathML"
60+
user_preferences["Navigation"]["CopyAs"] = (
61+
user_preferences["Other"]["CopyAs"] if "CopyAs" in user_preferences["Other"] else "MathML"
62+
)
6163
UserInterface.validate_user_preferences()
6264

6365
if "NVDAAddOn" in user_preferences:

0 commit comments

Comments
 (0)