From 1b69165f4afe05533a756bb7993293f5543bc83c Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Tue, 6 Mar 2018 18:57:51 +0100 Subject: [PATCH] disable not-callable for iter_entry_points --- certbot/plugins/disco.py | 1 + 1 file changed, 1 insertion(+) diff --git a/certbot/plugins/disco.py b/certbot/plugins/disco.py index 5a7e07ec0..062c11650 100644 --- a/certbot/plugins/disco.py +++ b/certbot/plugins/disco.py @@ -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),