diff --git a/dev-tools/scripts/pyproject.toml b/dev-tools/scripts/pyproject.toml index 4cef91a063be..c19b333c397c 100644 --- a/dev-tools/scripts/pyproject.toml +++ b/dev-tools/scripts/pyproject.toml @@ -22,9 +22,6 @@ reportUnnecessaryComparison = "hint" # Requires cleaning up some dead co reportUntypedNamedTuple = "hint" # Requires moving to different type of named tuple reportUnusedCallResult = "none" # Forces you to assign unused retvals to '_', very noisy. -# Intentionally disabled because it slows pyright by 2x -reportShadowedImports = "none" # Extremely slow check - [tool.ruff] target-version = "py312" line-length = 200 diff --git a/dev-tools/scripts/requirements.txt b/dev-tools/scripts/requirements.txt index 5fc81a630817..93003575a049 100644 --- a/dev-tools/scripts/requirements.txt +++ b/dev-tools/scripts/requirements.txt @@ -13,6 +13,6 @@ PyGithub==2.8.1 # JIRA processing in githubPRs jira==3.8.0 # type-checking in "make lint" -basedpyright==1.31.4 +basedpyright==1.31.6 # linting in "make lint" ruff==0.13.2