From 1126f53530079a5c867cf2643e28d7aa1ad6050c Mon Sep 17 00:00:00 2001 From: pgjones Date: Thu, 24 Dec 2020 19:34:52 +0000 Subject: [PATCH] Configure isort to have the same line length as flake8 This allows isort and black to play nicely for a long import line in the typing module. --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 244ba7af..0bd7dc9d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -47,3 +47,6 @@ testpaths = tests exclude = venv/*,tox/*,specs/* ignore = E123,E128,E266,E402,W503,E731,W601 max-line-length = 119 + +[isort] +line_length = 119