mirror of
https://github.com/certbot/certbot.git
synced 2026-03-23 02:43:55 -04:00
Lint
This commit is contained in:
parent
1ae8d344b0
commit
683bebd56c
3 changed files with 2 additions and 2 deletions
|
|
@ -29,6 +29,7 @@ from letsencrypt import storage
|
|||
from letsencrypt.display import ops as display_ops
|
||||
from letsencrypt.plugins import disco as plugins_disco
|
||||
|
||||
# pylint: disable=too-many-lines
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
|||
|
|
@ -701,7 +701,7 @@ def main(cli_args=sys.argv[1:]):
|
|||
|
||||
|
||||
# Maps verbs/subcommands to the functions that implement them
|
||||
# In principle this should live in cli.HelpfulArgumentParser, but
|
||||
# In principle this should live in cli.HelpfulArgumentParser, but
|
||||
# due to issues with import cycles and testing, it lives here
|
||||
VERBS = {"auth": obtain_cert, "certonly": obtain_cert,
|
||||
"config_changes": config_changes, "everything": run,
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ import letsencrypt.errors as errors
|
|||
|
||||
from letsencrypt.display import util as display_util
|
||||
|
||||
|
||||
CHOICES = [("First", "Description1"), ("Second", "Description2")]
|
||||
TAGS = ["tag1", "tag2", "tag3"]
|
||||
TAGS_CHOICES = [("1", "tag1"), ("2", "tag2"), ("3", "tag3")]
|
||||
|
|
|
|||
Loading…
Reference in a new issue