Skip to content

Commit

Permalink
Fix ruff command
Browse files Browse the repository at this point in the history
  • Loading branch information
eccabay committed Jul 5, 2024
1 parent 5f87338 commit 50460dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ lint:
python docs/notebook_version_standardizer.py check-versions
python docs/notebook_version_standardizer.py check-execution
black . --check --config=./pyproject.toml
ruff . --config=./pyproject.toml
ruff check . --config=./pyproject.toml

.PHONY: lint-fix
lint-fix:
python docs/notebook_version_standardizer.py standardize
black . --config=./pyproject.toml
ruff . --config=./pyproject.toml --fix
ruff check . --config=./pyproject.toml --fix

.PHONY: test
test:
Expand Down

0 comments on commit 50460dc

Please sign in to comment.