From d82d3396e7c42f262e4af37a6606bf992ab0e9cb Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Tue, 8 Oct 2019 17:42:36 +0200 Subject: [PATCH] Minor flake8 improvements (#3324) * Update flake8-bugbear * Remove unnecessary comment * Add a comment about an upcoming fix --- .flake8 | 4 +--- requirements-tests-py3.txt | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.flake8 b/.flake8 index 1d582c448789..362deab3ccf9 100644 --- a/.flake8 +++ b/.flake8 @@ -5,7 +5,7 @@ # 7155 E302 expected 2 blank lines # 1463 F401 imported but unused # 967 E701 multiple statements on one line (colon) -# 457 F811 redefinition +# 457 F811 redefinition (should be fixed in pyflakes 2.1.2) # 390 E305 expected 2 blank lines # 4 E741 ambiguous variable name @@ -18,8 +18,6 @@ [flake8] ignore = F401, F403, F405, F811, E301, E302, E305, E501, E701, E704, E741, B303, W504 # We are checking with Python 3 but many of the stubs are Python 2 stubs. -# A nice future improvement would be to provide separate .flake8 -# configurations for Python 2 and Python 3 files. builtins = StandardError,apply,basestring,buffer,cmp,coerce,execfile,file,intern,long,raw_input,reduce,reload,unichr,unicode,xrange exclude = .venv*,@*,.git max-line-length = 130 diff --git a/requirements-tests-py3.txt b/requirements-tests-py3.txt index 34c3a46716aa..e5e3ba7da6d9 100644 --- a/requirements-tests-py3.txt +++ b/requirements-tests-py3.txt @@ -2,7 +2,7 @@ git+https://github.com/python/mypy.git@master typed-ast>=1.0.4 black==19.3b0 flake8==3.7.8 -flake8-bugbear==19.3.0 +flake8-bugbear==19.8.0 flake8-pyi==19.3.0 isort==4.3.21 pytype>=2019.7.30