From 62ae85d05a4751c89276faa29816beafe7953ce3 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Mon, 25 Oct 2010 22:14:32 +0200 Subject: [PATCH] Misinterpreted this warning. Disabling it again --- pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index dc7a9082..d2f84b77 100644 --- a/pylintrc +++ b/pylintrc @@ -16,7 +16,8 @@ # R0903 - Too few public methods (%s/%s) # R0904 - Too many public methods (%s/%s) # R0921 - Abstract class not referenced +# W0141 - Used builtin function '%s' # W0142 - Used * or ** magic # W0613 - Unused argument %r # -disable = C0103,C0111,E0102,E0202,E1101,R0201,R0801,R0903,R0904,R0921,W0142,W0613 +disable = C0103,C0111,E0102,E0202,E1101,R0201,R0801,R0903,R0904,R0921,W0141,W0142,W0613