ruff: check shadowed variables (#32851)

* check shadowed variables

* fix
old-commit-hash: 69d4b0fdf0ff2856b7a2785d8210f42d654374da
This commit is contained in:
Shane Smiskol
2024-06-27 14:44:26 -07:00
committed by GitHub
parent 7718d6f7ec
commit 6cd2b2fb78
3 changed files with 9 additions and 8 deletions

View File

@@ -209,7 +209,8 @@ lint.select = [
"UP", # pyupgrade
"TRY302", "TRY400", "TRY401", # try/excepts
"RUF008", "RUF100",
"TID251"
"TID251",
"PLR1704",
]
lint.ignore = [
"E741",