From 097d7a1850f6f6df73a5761c657b73ef9dbd3e29 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 19 Jan 2022 09:15:11 -0800 Subject: [PATCH] simplify __init__ --- jc/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/jc/__init__.py b/jc/__init__.py index 2156056a..509c0979 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -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()`. """ from .lib import __version__, parse, parser_mod_list, plugin_parser_mod_list - -# cleanup -del lib -del appdirs