Skip to content

Commit

Permalink
Install the correct import sorter in noxfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kiudee committed Apr 2, 2022
1 parent 2f12bbf commit b8449f8
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 @@ -79,7 +79,7 @@ def black(session):
def precommit(session):
args = session.posargs or ["run", "--all-files", "--show-diff-on-failure"]
session.install(
"pre-commit", "black", "click", "flake8", "doc8", "zimports",
"pre-commit", "black", "click", "flake8", "isort",
)
session.run("pre-commit", *args)
if args and args[0] == "install":
Expand Down

0 comments on commit b8449f8

Please sign in to comment.