From c37f0fa4ef63e93672d5f5bfbc792830ba0bccce Mon Sep 17 00:00:00 2001 From: Hugh Brown Date: Thu, 10 Oct 2013 20:08:38 -0400 Subject: [PATCH] Disable I0011 pylint message --- pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index 54791c5..236d039 100644 --- a/pylintrc +++ b/pylintrc @@ -52,7 +52,7 @@ load-plugins= # E1103: %s %r has no %r member (but some types could not be inferred) - fails to infer real members of types, e.g. in Celery # W0231: method from base class is not called - complains about not invoking empty __init__s in parents, which is annoying # R0921: abstract class not referenced, when in fact referenced from another egg -disable=F0401,E0611,E1101,W0142,W0212,R0201,W0703,R0801,R0901,W0511,E1103,W0231,R0921,W0402 +disable=F0401,E0611,E1101,W0142,W0212,R0201,W0703,R0801,R0901,W0511,E1103,W0231,R0921,W0402,I0011 [REPORTS] -- 2.34.1