From b8449f8a28b48a15f210083075fa7e671acd062c Mon Sep 17 00:00:00 2001 From: Karlson Pfannschmidt Date: Sat, 2 Apr 2022 13:29:12 +0200 Subject: [PATCH] Install the correct import sorter in noxfile.py --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 3fb2005..fbbc580 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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":