Skip to content

Commit

Permalink
makefile/lint-python-files: allows isort to make changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hklarner authored and goapunk committed Jul 18, 2023
1 parent 684ce51 commit 47219c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ lint-quick:
lint-python-files:
EXIT_STATUS=0; \
$(VIRTUAL_ENV)/bin/black $(ARGUMENTS) || EXIT_STATUS=$$?; \
$(VIRTUAL_ENV)/bin/isort --diff -c $(ARGUMENTS) --filter-files || EXIT_STATUS=$$?; \
$(VIRTUAL_ENV)/bin/isort $(ARGUMENTS) --filter-files || EXIT_STATUS=$$?; \
$(VIRTUAL_ENV)/bin/flake8 $(ARGUMENTS) || EXIT_STATUS=$$?; \
exit $${EXIT_STATUS}

Expand Down

0 comments on commit 47219c9

Please sign in to comment.