From 460bb584ea969efb4fc81fd583fb14f80875d045 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Tue, 29 Dec 2009 18:58:25 +0100 Subject: [PATCH] pylint: Temporarily disable W0201 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit There seems to be a bug in pylint relating to W0201 (“Attribute '%r' defined outside __init__”) being re-enabled by simple comments and not being able to be disabled again. Until that is fixed, we disable this warning. Signed-off-by: Iustin Pop Reviewed-by: Olivier Tharan --- pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index e2a9178..7d42070 100644 --- a/pylintrc +++ b/pylintrc @@ -105,4 +105,4 @@ disable-msg-cat= #enable-msg= # Disable the message(s) with the given id(s). -disable-msg=W0511,R0922 +disable-msg=W0511,R0922,W0201 -- 1.7.10.4