Compare commits

...

1 Commits

Author SHA1 Message Date
Erica Portnoy
1b69165f4a disable not-callable for iter_entry_points 2018-03-06 18:57:51 +01:00

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),