mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
formatting
This commit is contained in:
@ -110,8 +110,8 @@ def parser_info(parser_mod_name: str) -> Dict
|
|||||||
|
|
||||||
Returns a dictionary that includes the module metadata.
|
Returns a dictionary that includes the module metadata.
|
||||||
|
|
||||||
This function will accept module_name, cli-name, and --argument-name
|
This function will accept **module_name**, **cli-name**, and
|
||||||
variants of the module name string.
|
**--argument-name** variants of the module name string.
|
||||||
|
|
||||||
<a id="jc.lib.all_parser_info"></a>
|
<a id="jc.lib.all_parser_info"></a>
|
||||||
|
|
||||||
@ -133,6 +133,6 @@ def get_help(parser_mod_name: str) -> None
|
|||||||
|
|
||||||
Show help screen for the selected parser.
|
Show help screen for the selected parser.
|
||||||
|
|
||||||
This function will accept module_name, cli-name, and --argument-name
|
This function will accept **module_name**, **cli-name**, and
|
||||||
variants of the module name string.
|
**--argument-name** variants of the module name string.
|
||||||
|
|
||||||
|
@ -140,7 +140,6 @@ def _get_parser(parser_mod_name):
|
|||||||
modpath = 'jcparsers.' if parser_cli_name in local_parsers else 'jc.parsers.'
|
modpath = 'jcparsers.' if parser_cli_name in local_parsers else 'jc.parsers.'
|
||||||
return importlib.import_module(f'{modpath}{parser_mod_name}')
|
return importlib.import_module(f'{modpath}{parser_mod_name}')
|
||||||
|
|
||||||
|
|
||||||
def parse(
|
def parse(
|
||||||
parser_mod_name: str,
|
parser_mod_name: str,
|
||||||
data: Union[str, Iterable[str]],
|
data: Union[str, Iterable[str]],
|
||||||
@ -229,8 +228,8 @@ def parser_info(parser_mod_name: str) -> Dict:
|
|||||||
"""
|
"""
|
||||||
Returns a dictionary that includes the module metadata.
|
Returns a dictionary that includes the module metadata.
|
||||||
|
|
||||||
This function will accept module_name, cli-name, and --argument-name
|
This function will accept **module_name**, **cli-name**, and
|
||||||
variants of the module name string.
|
**--argument-name** variants of the module name string.
|
||||||
"""
|
"""
|
||||||
# ensure parser_mod_name is a true module name and not a cli name
|
# ensure parser_mod_name is a true module name and not a cli name
|
||||||
parser_mod_name = _cliname_to_modname(parser_mod_name)
|
parser_mod_name = _cliname_to_modname(parser_mod_name)
|
||||||
@ -262,7 +261,7 @@ def get_help(parser_mod_name: str) -> None:
|
|||||||
"""
|
"""
|
||||||
Show help screen for the selected parser.
|
Show help screen for the selected parser.
|
||||||
|
|
||||||
This function will accept module_name, cli-name, and --argument-name
|
This function will accept **module_name**, **cli-name**, and
|
||||||
variants of the module name string.
|
**--argument-name** variants of the module name string.
|
||||||
"""
|
"""
|
||||||
help(_get_parser(parser_mod_name))
|
help(_get_parser(parser_mod_name))
|
||||||
|
Reference in New Issue
Block a user