Disable I0011 pylint message
authorHugh Brown <hbrown@amplify.com>
Fri, 11 Oct 2013 00:08:38 +0000 (20:08 -0400)
committerHugh Brown <hbrown@amplify.com>
Fri, 11 Oct 2013 00:08:38 +0000 (20:08 -0400)
pylintrc

index 54791c50b05de1ec820c23d09961796b3b7d18a8..236d039abaefc2e04e158a065daa6e03dc0ccf9a 100644 (file)
--- 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]