From e7ebfc4d01b06db3263a743138ca27c9a31d39b8 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 7 Aug 2014 00:07:14 +0200 Subject: pyflakes: Ignore E702 --- .flake8 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.flake8') diff --git a/.flake8 b/.flake8 index d452989ce..0c7c865d4 100644 --- a/.flake8 +++ b/.flake8 @@ -11,6 +11,7 @@ # E222: Multiple spaces after operator # F811: Redifiniton # W292: No newline at end of file -ignore=E241,E265,F401,E501,F821,F841,E222,F811,W292 +# E702: multiple statements on one line +ignore=E241,E265,F401,E501,F821,F841,E222,F811,W292,E702 max_complexity = 12 exclude = ez_setup.py -- cgit v1.2.3-54-g00ecf