1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-15 01:24:29 +02:00

simplify __init__

This commit is contained in:
Kelly Brazil
2022-01-19 09:15:11 -08:00
parent 302bf72e72
commit 097d7a1850

View File

@ -88,7 +88,3 @@ Alternatively, you can bypass the high-level API and call the parser modules dir
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 `jc.plugin_parser_mod_list()`. 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 `jc.plugin_parser_mod_list()`.
""" """
from .lib import __version__, parse, parser_mod_list, plugin_parser_mod_list from .lib import __version__, parse, parser_mod_list, plugin_parser_mod_list
# cleanup
del lib
del appdirs