Skip to content

Commit

Permalink
🔨 Fix scripts/lint by using ruff check
Browse files Browse the repository at this point in the history
`ruff <path>` has been removed. Use `ruff check <path>` instead.
  • Loading branch information
RafaelWO committed Nov 1, 2024
1 parent b1f5377 commit faa69b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lint
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export SOURCE_FILES="httpx tests"

set -x

${PREFIX}ruff --fix $SOURCE_FILES
${PREFIX}ruff check --fix $SOURCE_FILES
${PREFIX}ruff format $SOURCE_FILES

0 comments on commit faa69b5

Please sign in to comment.