Skip to content

Commit 4ad71de

Browse files
committed
chore: upgrade isort command
1 parent 0e110fe commit 4ad71de

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Apply code quality assurance tools.
88
qa:
9-
isort --recursive src/structurizr/ tests/ examples/ setup.py
9+
isort src/structurizr/ tests/ examples/ setup.py
1010
black src/structurizr/ tests/ examples/ setup.py
1111

1212
## Prepare a release by generating the automatic code documentation.

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ commands =
2121
[testenv:isort]
2222
skip_install = True
2323
deps=
24-
isort
24+
isort >=5.0.5
2525
commands=
26-
isort --check-only --diff --recursive {toxinidir}/src/structurizr {toxinidir}/tests {toxinidir}/setup.py
26+
isort --check-only --diff {toxinidir}/src/structurizr {toxinidir}/tests {toxinidir}/setup.py
2727

2828
[testenv:black]
2929
skip_install = True

0 commit comments

Comments
 (0)