Addon Manager: Reformat with new Black line length

This commit is contained in:
Chris Hennes
2023-09-02 12:27:25 -05:00
committed by Chris Hennes
parent fce59e6acb
commit 3906828d44
67 changed files with 654 additions and 1233 deletions

View File

@@ -87,9 +87,7 @@ class PythonIdentifierValidator(QValidator):
return QValidator.Invalid # Includes an illegal character of some sort
if keyword.iskeyword(value):
return (
QValidator.Intermediate
) # They can keep typing and it might become valid
return QValidator.Intermediate # They can keep typing and it might become valid
return QValidator.Acceptable