From 11bd966e1eb1abf1ad4c28547df6a55a9f320111 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 22 Apr 2014 18:00:38 +0200 Subject: [PATCH] Update flake8 ignores --- .flake8 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.flake8 b/.flake8 index cb535beba..f91a8b57b 100644 --- a/.flake8 +++ b/.flake8 @@ -1,9 +1,11 @@ [flake8] # E241: Multiple spaces after , # E265: Block comment should start with '#' -# F401: Unused import (checked by pylint) -# E501: Line too long (checked by pylint) -# F821: undefined name (checked by pylint) -ignore=E241,E265,F401,E501,F821 +# checked by pylint: +# F401: Unused import +# E501: Line too long +# F821: undefined name +# F841: unused variable +ignore=E241,E265,F401,E501,F821,F841 max_complexity = 10 exclude = appdirs.py