From ff85bd30b7a570bb9e369ad5ea07147f06fc3502 Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Thu, 10 Sep 2015 14:59:10 -0700 Subject: [PATCH] Disable duplicate-code pylint check --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index d954b2658..9e49cb992 100644 --- a/.pylintrc +++ b/.pylintrc @@ -38,7 +38,7 @@ load-plugins=linter_plugin # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use"--disable=all --enable=classes # --disable=W" -disable=fixme,locally-disabled,abstract-class-not-used +disable=fixme,locally-disabled,abstract-class-not-used,duplicate-code # abstract-class-not-used cannot be disabled locally (at least in pylint 1.4.1)