From 1bc02aa9db856a6bc9301c3b1c71b1bf41794a68 Mon Sep 17 00:00:00 2001 From: Diego Hurtado Date: Tue, 29 Nov 2022 11:31:53 +0100 Subject: [PATCH] Refactor comments in .flake8 Fixes #1469 --- .flake8 | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.flake8 b/.flake8 index 84b003d4b0..8b2144c00f 100644 --- a/.flake8 +++ b/.flake8 @@ -1,9 +1,17 @@ [flake8] ignore = - E501 # line too long, defer to black - W503 # allow line breaks before binary ops - W504 # allow line breaks after binary ops - E203 # allow whitespace before ':' (https://github.com/psf/black#slices) + # line too long, defer to black + E501 + + # allow line breaks before binary ops + W503 + + # allow line breaks after binary ops + W504 + + # allow whitespace before ':' (https://github.com/psf/black#slices) + E203 + exclude = .bzr .git