fix: automatically fix issues with ruff (#31897)

* Perform safe automatic fixes instead of only selecting
[isort](https://docs.astral.sh/ruff/rules/#isort-i)
This commit is contained in:
Mason Daugherty
2025-07-07 14:13:10 -04:00
committed by GitHub
parent e686a70ee0
commit 706a66eccd
21 changed files with 24 additions and 23 deletions

View File

@@ -22,7 +22,7 @@ lint lint_diff lint_package lint_tests:
format format_diff:
[ "$(PYTHON_FILES)" = "" ] || uv run --group typing --group lint ruff format $(PYTHON_FILES)
[ "$(PYTHON_FILES)" = "" ] || uv run --group typing --group lint ruff check --select I --fix $(PYTHON_FILES)
[ "$(PYTHON_FILES)" = "" ] || uv run --group typing --group lint ruff check --fix $(PYTHON_FILES)
test tests: _test _e2e_test