From 5ba80e6ec5efe0f5a71feec0db7f92e95f161782 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Fri, 24 Jul 2020 17:04:09 -0700 Subject: [PATCH] Use same line length with black, flake8, and isort --- setup.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 76dd01bd2..6389cce9e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,7 +8,7 @@ parentdir_prefix = dask_cuda- [flake8] exclude = docs, __init__.py, versioneer.py -max-line-length = 88 +max_line_length = 88 ignore = # Assigning lambda expression E731 @@ -22,7 +22,7 @@ ignore = E231 [isort] -line_length=79 +line_length=88 multi_line_output=3 include_trailing_comma=True force_grid_wrap=0