Pylint often chatters on about stuff it shouldn’t. You can disable the warning in a .pylintrc file.
This page http://pylint-messages.wikidot.com/messages:w0141 indicates the problem is that filter and map have been superseded by list comprehensions.
A line like this in your pylintrc file will quiet the warning:
disable=W0141