Enforce F821 undefined-name (#6032)

This commit is contained in:
Chenlei Hu
2024-12-12 16:24:41 -08:00
committed by GitHub
parent 2cddbf0821
commit 6c0377f43e

View File

@@ -6,6 +6,5 @@ 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
"F821", # undefined-name
]