Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 2a9a8e8

Browse files
committed
Isort doesn't take --recursive argument.
1 parent a48c6f7 commit 2a9a8e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ test:
4040
.PHONY: test
4141

4242
isort:
43-
@pipenv run isort --recursive $(OICDIR) $(TESTDIR)
43+
@pipenv run isort $(OICDIR) $(TESTDIR)
4444

4545
check-isort:
46-
@pipenv run isort --recursive --diff --check-only $(OICDIR) $(TESTDIR)
46+
@pipenv run isort --diff --check-only $(OICDIR) $(TESTDIR)
4747
.PHONY: isort check-isort
4848

4949
check-pylama:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ commands = sphinx-build -b html doc/ doc/_build/html -W
2020
ignore_errors = True
2121
extras = quality
2222
commands =
23-
isort --recursive --diff --check-only src/ tests/
23+
isort --diff --check-only src/ tests/
2424
pylama src/ tests/
2525

2626
[pep8]

0 commit comments

Comments
 (0)