Enforce F821 undefined-name

This commit is contained in:
huchenlei 2024-12-12 15:56:19 -08:00
parent 2cddbf0821
commit 03ee4458cd

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
]