From fdb586786eb1e06843036d0ffb116c6eb135a552 Mon Sep 17 00:00:00 2001 From: Jesse Zoldak Date: Mon, 12 Jan 2015 17:02:12 -0500 Subject: [PATCH] Disable pylint R0801 duplicate-code checker --- pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index 72463fa125..16fad723e1 100644 --- a/pylintrc +++ b/pylintrc @@ -56,7 +56,8 @@ disable= too-many-return-statements, too-many-branches, too-many-arguments, - too-many-locals + too-many-locals, + duplicate-code [REPORTS]