From: Jelle Zijlstra Date: Fri, 9 Dec 2022 04:11:07 +0000 (-0800) Subject: Fix CI with latest flake8-bugbear (#3412) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/19c5fe429e355a53ff320065d22e661785040b4c Fix CI with latest flake8-bugbear (#3412) --- diff --git a/.flake8 b/.flake8 index ae11a13..eddaaba 100644 --- a/.flake8 +++ b/.flake8 @@ -1,5 +1,6 @@ [flake8] -ignore = E203, E266, E501, W503 +# B905 should be enabled when we drop support for 3.9 +ignore = E203, E266, E501, W503, B905 # 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