From 29e21d1fc044b6221f62c9353de6c37faeb44b84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Fri, 12 May 2017 14:21:59 +0200 Subject: [PATCH] pylint: allow filter builtin --- ci/pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/pylintrc b/ci/pylintrc index 8339104d..428cc139 100644 --- a/ci/pylintrc +++ b/ci/pylintrc @@ -44,7 +44,7 @@ generated-members= [BASIC] # List of builtins function names that should not be used, separated by a comma -bad-functions=filter,apply,input +bad-functions=apply,input # Regular expression which should only match correct module names module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$