From 1d1a2c8d624dfda8178a1076079f07a61cc87385 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 13 Mar 2013 14:33:58 -0400 Subject: [PATCH] Disable a few more unneeded pylint alarms --- .pylintrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index d1cdbb4780..0132b52765 100644 --- a/.pylintrc +++ b/.pylintrc @@ -36,8 +36,10 @@ load-plugins= disable= # W0141: Used builtin function 'map' # W0142: Used * or ** magic +# R0901: Too many ancestors # R0903: Too few public methods (1/2) - W0141,W0142,R0903 +# R0904: Too many public methods + W0141,W0142,R0901,R0903,R0904 [REPORTS]