From 6f1cf51a05d20eafe991f4392c1b168f9ab632c5 Mon Sep 17 00:00:00 2001 From: Mathias Hauser Date: Mon, 28 Nov 2022 11:32:59 +0100 Subject: [PATCH] fix flake8 config (#7321) * fix flake8 config * reformat --- setup.cfg | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/setup.cfg b/setup.cfg index d2c4a4e51c3..7919908e8ec 100644 --- a/setup.cfg +++ b/setup.cfg @@ -147,11 +147,12 @@ markers = [flake8] ignore = - E203 # whitespace before ':' - doesn't work well with black - E402 # module level import not at top of file - E501 # line too long - let black worry about that - E731 # do not assign a lambda expression, use a def - W503 # line break before binary operator + # E203: whitespace before ':' - doesn't work well with black + # E402: module level import not at top of file + # E501: line too long - let black worry about that + # E731: do not assign a lambda expression, use a def + # W503: line break before binary operator + E203, E402, E501, E731, W503 exclude = .eggs doc