From 7c9ce0da7a25b85846674c27f3618689cf9c2ba2 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 29 Oct 2017 16:29:06 -0400 Subject: [PATCH] Ignore yet another new flake8 error As described in PyCQA/pycodestyle#598, pycodestyle has exposed a new error for "ambiguous variable names." I really wish this project were less eager to add new warnings of questionable value that are enabled by default... --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index a40d74964..be2dbe543 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,4 +19,5 @@ accept-encodings=utf-8 # - FI53: `__future__` import "print_function" present # - FI14: `__future__` import "unicode_literals" missing # - FI15: `__future__` import "generator_stop" missing -ignore=E121,E123,E126,E226,E24,E704,W503,W504,E305,C901,E221,E731,F405,FI50,FI51,FI12,FI53,FI14,FI15 +# - E741: ambiguous variable name +ignore=E121,E123,E126,E226,E24,E704,W503,W504,E305,C901,E221,E731,F405,FI50,FI51,FI12,FI53,FI14,FI15,E741