disable not-callable for iter_entry_points

This commit is contained in:
Erica Portnoy 2018-03-06 18:57:51 +01:00
parent d62c56f9c9
commit 1b69165f4a

View file

@ -190,6 +190,7 @@ class PluginsRegistry(collections.Mapping):
def find_all(cls):
"""Find plugins using setuptools entry points."""
plugins = {}
# pylint: disable=not-callable
entry_points = itertools.chain(
pkg_resources.iter_entry_points(
constants.SETUPTOOLS_PLUGINS_ENTRY_POINT),