From 72288345e3e95be6d5bbb697d24139bbf6a42277 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Mon, 4 Jan 2016 21:38:22 +0100 Subject: [PATCH] pep8: Don't ignore rules we already obey --- hooks/pre-commit | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hooks/pre-commit b/hooks/pre-commit index 1ea732e4..5872539a 100755 --- a/hooks/pre-commit +++ b/hooks/pre-commit @@ -46,8 +46,8 @@ else done fi -# In the default configuration, the checks E123, E133, E226, E241 and E242 are -# ignored because they are not rules unanimously accepted +# In the default configuration, the checks E123, E226 ignored because +# they are not rules unanimously accepted # On top of those, we ignore: # * E501: line too long (82 > 79 characters) # - Recommended for readability but not enforced @@ -56,7 +56,7 @@ fi # - It's quite new # - Quite pedantic -PEP8_IGNORE="E123,E133,E226,E241,E242,E501,W503" +PEP8_IGNORE="E123,E226,E501,W503" err() { echo ERROR: "$@" -- 2.30.2