mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
Disable too-many-statements on parser setup
This commit is contained in:
parent
f8ab3227fb
commit
3105fe8a34
1 changed files with 1 additions and 1 deletions
|
|
@ -567,7 +567,7 @@ class HelpfulArgumentParser(object):
|
|||
return dict([(t, t == chosen_topic) for t in self.help_topics])
|
||||
|
||||
|
||||
def prepare_and_parse_args(plugins, args, detect_defaults=False):
|
||||
def prepare_and_parse_args(plugins, args, detect_defaults=False): # pylint: disable=too-many-statements
|
||||
"""Returns parsed command line arguments.
|
||||
|
||||
:param .PluginsRegistry plugins: available plugins
|
||||
|
|
|
|||
Loading…
Reference in a new issue