mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 03:52:02 +02:00
Upgrade the pinned version of pylint (#9839)
* upgrade pylint * fix upgraded pylint * downgrade pyopenssl * remove unneeded ignores * stop using text * update sphinx-rtd-theme
This commit is contained in:
@@ -21,7 +21,7 @@ SETUPTOOLS_PLUGINS_ENTRY_POINT = "certbot.plugins"
|
||||
OLD_SETUPTOOLS_PLUGINS_ENTRY_POINT = "letsencrypt.plugins"
|
||||
"""Plugins Setuptools entry point before rename."""
|
||||
|
||||
CLI_DEFAULTS: Dict[str, Any] = dict( # noqa
|
||||
CLI_DEFAULTS: Dict[str, Any] = dict( # pylint: disable=use-dict-literal
|
||||
config_files=[
|
||||
os.path.join(misc.get_default_folder('config'), 'cli.ini'),
|
||||
# https://freedesktop.org/wiki/Software/xdg-user-dirs/
|
||||
|
||||
@@ -207,6 +207,7 @@ class PluginsRegistry(Mapping):
|
||||
plugin2_dist = other_ep.entry_point.dist
|
||||
plugin1 = plugin1_dist.name.lower() if plugin1_dist else "unknown"
|
||||
plugin2 = plugin2_dist.name.lower() if plugin2_dist else "unknown"
|
||||
# pylint: disable=broad-exception-raised
|
||||
raise Exception("Duplicate plugin name {0} from {1} and {2}.".format(
|
||||
plugin_ep.name, plugin1, plugin2))
|
||||
if issubclass(plugin_ep.plugin_cls, interfaces.Plugin):
|
||||
|
||||
Reference in New Issue
Block a user