From ff4888cbc52d1675a6e3fa142179c944d66bafda Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Mon, 8 Jul 2013 08:03:13 -0400 Subject: [PATCH] Ignore Pylint R0921 --- pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index 4f32786bd5..e501cf6156 100644 --- a/pylintrc +++ b/pylintrc @@ -39,8 +39,9 @@ disable= # C0301: Line too long # W0141: Used builtin function 'map' # W0142: Used * or ** magic +# R0921: Abstract class not referenced # R0922: Abstract class is only referenced 1 times - I0011,C0301,W0141,W0142,R0922, + I0011,C0301,W0141,W0142,R0921,R0922, # Django makes classes that trigger these # W0232: Class has no __init__ method