[core] Enable ruff BLE (flake8-blind-except) lint family (#16659)

This commit is contained in:
J. Nick Koston
2026-05-27 03:09:57 -05:00
committed by GitHub
parent 7463a15c7e
commit 3cc875c40b
23 changed files with 30 additions and 29 deletions

View File

@@ -312,7 +312,7 @@ def _is_clang_tidy_full_scan() -> bool:
)
# Exit 0 means hash changed (full scan needed)
return result.returncode == 0
except Exception:
except Exception: # noqa: BLE001
# If hash check fails, run full scan to be safe
return True