From 40410496fcea0d3c13743547c98843c83707a184 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sun, 7 Nov 2021 18:59:32 -0800 Subject: [PATCH] Alphabetize functions. --- voussoirkit/betterhelp.py | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/voussoirkit/betterhelp.py b/voussoirkit/betterhelp.py index 786c5c8..8ae17f9 100644 --- a/voussoirkit/betterhelp.py +++ b/voussoirkit/betterhelp.py @@ -10,6 +10,19 @@ HELPSTRINGS = {'', 'help', '-h', '--help'} # INTERNALS ################################################################################ +def add_previews(docstring, sub_docstrings) -> str: + ''' + Given a primary docstring which contains {command_name} formatting elements, + and a dict of sub_docstrings of {command_name: docstring}, insert previews + of each command into the primary docstring. + ''' + previews = { + sub_name: docstring_preview(sub_text) + for (sub_name, sub_text) in sub_docstrings.items() + } + docstring = docstring.format(**previews) + return docstring + def can_use_bare(parser) -> bool: ''' Return true if the given parser has no required arguments, ie can run bare. @@ -60,31 +73,18 @@ def docstring_preview(text) -> str: text = text.split('\n\n')[0].strip() return text -def listget(li, index, fallback=None): - try: - return li[index] - except IndexError: - return fallback - -def add_previews(docstring, sub_docstrings) -> str: - ''' - Given a primary docstring which contains {command_name} formatting elements, - and a dict of sub_docstrings of {command_name: docstring}, insert previews - of each command into the primary docstring. - ''' - previews = { - sub_name: docstring_preview(sub_text) - for (sub_name, sub_text) in sub_docstrings.items() - } - docstring = docstring.format(**previews) - return docstring - def get_subparser_action(parser): for action in parser._actions: if isinstance(action, argparse._SubParsersAction): return action raise TypeError('Couldn\'t locate the SubParsersAction.') +def listget(li, index, fallback=None): + try: + return li[index] + except IndexError: + return fallback + def set_alias_docstrings(sub_docstrings, subparser_action) -> dict: ''' When using subparser aliases: