Skip to content

Commit

Permalink
test: fix isort option
Browse files Browse the repository at this point in the history
Passing explicit targets for isort.
Following this PyCQA/isort#1356
  • Loading branch information
chezou authored Aug 1, 2020
1 parent 72c60f6 commit 1331372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def lint(session):
session.install(*lint_tools)
session.run("flake8", *targets)
session.run("black", "--diff", "--check", *targets)
session.run("isort", "--check-only")
session.run("isort", "--check-only", *targets)


@nox.session
Expand Down

0 comments on commit 1331372

Please sign in to comment.