From: Bartosz Sokorski Date: Wed, 18 Jan 2023 02:01:03 +0000 (+0100) Subject: Add flake8-bugbear B907 to ignore list (#3503) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/24469c9bd14c3ddb4739f24c661aeb725f2decd5 Add flake8-bugbear B907 to ignore list (#3503) --- diff --git a/.flake8 b/.flake8 index eddaaba..7bc346a 100644 --- a/.flake8 +++ b/.flake8 @@ -1,6 +1,6 @@ [flake8] # B905 should be enabled when we drop support for 3.9 -ignore = E203, E266, E501, W503, B905 +ignore = E203, E266, E501, W503, B905, B907 # line length is intentionally set to 80 here because black uses Bugbear # See https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length for more details max-line-length = 80