Enable the bad-indentation pylint rule and fix space indentations (#2968)

This commit is contained in:
correctmost 2024-11-30 06:54:53 -05:00 committed by GitHub
parent 1e6492d34a
commit 11f8490b59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 146 additions and 146 deletions

View File

@ -149,6 +149,7 @@ py-version = "3.12"
recursive = true recursive = true
[tool.pylint.format] [tool.pylint.format]
indent-string = '\t'
max-line-length = 160 max-line-length = 160
[tool.pylint."messages control"] [tool.pylint."messages control"]
@ -156,7 +157,6 @@ disable = [
"C", "C",
"R", "R",
"attribute-defined-outside-init", "attribute-defined-outside-init",
"bad-indentation",
"bare-except", "bare-except",
"broad-exception-caught", "broad-exception-caught",
"cell-var-from-loop", "cell-var-from-loop",