From 201850397a842d19d7e5c1fdbaf6201bf0a0e65f Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Fri, 2 Aug 2019 22:29:48 -0700 Subject: [PATCH] Add `isort` as a lint dep --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6cb4e3d..1ff4aa9 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ extras_require = { "pytest-cov>=2.7.1,<3.0.0", "pytest-asyncio>=0.10.0,<1.0.0", ], - "lint": ["mypy>=0.701,<1.0", "black==19.3b0"], + "lint": ["mypy>=0.701,<1.0", "black==19.3b0", "isort==4.3.21"], "dev": ["tox>=3.13.2,<4.0.0"], }