From 96d89cf44d4eebab6c3e7e785e440e3abe3875dc Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 9 Feb 2016 18:32:59 -0800 Subject: [PATCH] Disable too-many-locals for now --- letsencrypt/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 040ffa618..8cb4c0879 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -680,7 +680,7 @@ def run(config, plugins): # pylint: disable=too-many-branches,too-many-locals def obtain_cert(config, plugins, lineage=None): """Implements "certonly": authenticate & obtain cert, but do not install it.""" - + # pylint: disable=too-many-locals try: # installers are used in auth mode to determine domain names installer, authenticator = choose_configurator_plugins(config, plugins, "certonly")