From 041993c0bc0d3dcfc693d175fe43daed38883cd5 Mon Sep 17 00:00:00 2001 From: Oliver Palmer Date: Mon, 15 Sep 2014 00:55:25 -0400 Subject: [PATCH] Python 3 does not allow for multiple declarations of config values --- pylintrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pylintrc b/pylintrc index 94b9a3c6..c7b8ada3 100644 --- a/pylintrc +++ b/pylintrc @@ -100,8 +100,7 @@ zope=no # List of members which are set dynamically and missed by pylint inference # system, and so shouldn't trigger E0201 when accessed. Python regular # expressions are accepted. -generated-members=query,software,agents,agent,as_view -generated-members=requests.codes.([ok|accepted]) +generated-members=query,software,agents,agent,as_view,requests.codes.([ok|accepted]) [FORMAT]