Skip to content

Commit

Permalink
➖ replace isort with ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
yanyongyu authored Nov 25, 2024
1 parent 60cfeec commit ed459f0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 17 deletions.
16 changes: 1 addition & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ PyJWT = { version = "^2.4.0", extras = ["crypto"], optional = true }
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.0"
redis = "^5.2.0"
isort = "^5.13.2"
Jinja2 = "^3.1.2"
nonemoji = "^0.1.2"
pre-commit = "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-codegen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ set -e
# cd to the root of the project
cd "$(dirname "$0")/.."

python -m codegen && isort . && ruff check --fix --exit-zero . && ruff format .
python -m codegen && ruff check --select I --fix --exit-zero . && ruff check --fix --exit-zero . && ruff format .

0 comments on commit ed459f0

Please sign in to comment.