deepseek[patch]: ruff fixes and rules (#31901)

* bump ruff deps
* add more thorough ruff rules
* fix said rules
This commit is contained in:
Mason Daugherty
2025-07-07 21:54:44 -04:00
committed by GitHub
parent 38bd1abb8c
commit 231e8d0f43
6 changed files with 126 additions and 41 deletions

View File

@@ -8,7 +8,7 @@ if __name__ == "__main__":
for file in files:
try:
SourceFileLoader("x", file).load_module()
except Exception:
except Exception: # noqa: PERF203
has_failure = True
print(file) # noqa: T201
traceback.print_exc()