From ce84c09d3394b598f19a3e012ef27ce4154e3b3b Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 19 Jan 2022 18:44:26 -0800 Subject: [PATCH] add get_help() --- jc/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jc/__init__.py b/jc/__init__.py index 7c9d7349..9b5b55f8 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -84,4 +84,5 @@ To get a list of all available parser module names, use `jc.parser_mod_list()`. For a list of plugin parser module names only, use the `jc.plugin_parser_mod_list()` function. """ -from .lib import __version__, parse, parser_mod_list, plugin_parser_mod_list +from .lib import (__version__, parse, parser_mod_list, + plugin_parser_mod_list, get_help)