From a00f85d22bd86af2b8ecfff53efc732e95c20e7e Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Wed, 23 Sep 2020 19:59:10 +0530 Subject: [PATCH] Prepare flake8 for black --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 45fd58a3e..6b034f0ee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,6 +16,7 @@ default_section = THIRDPARTY include_trailing_comma = true [flake8] +max-line-length = 88 exclude = ./build, .nox, @@ -28,6 +29,8 @@ ignore = G200, G202, # pycodestyle checks ignored in the default configuration E121, E123, E126, E133, E226, E241, E242, E704, W503, W504, W505, + # black adds spaces around ':' + E203, per-file-ignores = # G: The plugin logging-format treats every .log and .error as logging. noxfile.py: G