mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Fight with cyclic lint
This commit is contained in:
parent
a5182c2fe6
commit
3c3c6ce359
3 changed files with 3 additions and 3 deletions
|
|
@ -38,7 +38,7 @@ load-plugins=linter_plugin
|
|||
# --enable=similarities". If you want to run only the classes checker, but have
|
||||
# no Warning level messages displayed, use"--disable=all --enable=classes
|
||||
# --disable=W"
|
||||
disable=fixme,locally-disabled,abstract-class-not-used,abstract-class-little-used,bad-continuation,too-few-public-methods,no-self-use,invalid-name,too-many-instance-attributes
|
||||
disable=fixme,locally-disabled,abstract-class-not-used,abstract-class-little-used,bad-continuation,too-few-public-methods,no-self-use,invalid-name,too-many-instance-attributes,cyclic-import
|
||||
# abstract-class-not-used cannot be disabled locally (at least in
|
||||
# pylint 1.4.1), same for abstract-class-little-used
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
"""Let's Encrypt command CLI argument processing."""
|
||||
# pylint: disable=too-many-lines
|
||||
from __future__ import print_function
|
||||
import argparse
|
||||
import copy
|
||||
|
|
@ -30,7 +31,6 @@ 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__)
|
||||
|
||||
|
|
@ -635,7 +635,7 @@ class HelpfulArgumentParser(object):
|
|||
self.VERBS = main.VERBS
|
||||
# List of topics for which additional help can be provided
|
||||
HELP_TOPICS = ["all", "security",
|
||||
"paths", "automation", "testing"] + list(six.iterkeys(self.VERBS)
|
||||
"paths", "automation", "testing"] + list(six.iterkeys(self.VERBS))
|
||||
|
||||
plugin_names = list(six.iterkeys(plugins))
|
||||
self.help_topics = HELP_TOPICS + plugin_names + [None]
|
||||
|
|
|
|||
0
letsencrypt/renew.py
Normal file
0
letsencrypt/renew.py
Normal file
Loading…
Reference in a new issue