Lint and fix undefined names (1/N) (#6028)

This commit is contained in:
Chenlei Hu
2024-12-12 15:55:26 -08:00
committed by GitHub
parent 60749f345d
commit 2cddbf0821
5 changed files with 15 additions and 9 deletions

View File

@@ -6,4 +6,6 @@ lint.select = [
"S307", # suspicious-eval-usage
"F401", # unused-import
"F841", # unused-local-variable
# TODO: Enable F821 after all errors has been fixed. Remaining errors: 7.
# "F821", # undefined-name
]