mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-07-13 01:20:24 +02:00
add asciitable and asciitable-m parsers
This commit is contained in:
@ -1,6 +1,4 @@
|
||||
"""jc - JSON Convert
|
||||
JC lib module
|
||||
"""
|
||||
"""jc - JSON Convert lib module"""
|
||||
import sys
|
||||
import os
|
||||
import re
|
||||
@ -15,6 +13,8 @@ parsers = [
|
||||
'airport',
|
||||
'airport-s',
|
||||
'arp',
|
||||
'asciitable',
|
||||
'asciitable-m',
|
||||
'blkid',
|
||||
'cksum',
|
||||
'crontab',
|
||||
@ -280,7 +280,6 @@ def parser_info(parser_mod_name: str, documentation: bool = False) -> Dict:
|
||||
"""
|
||||
# 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 = _get_parser(parser_mod_name)
|
||||
info_dict: Dict = {}
|
||||
|
||||
|
Reference in New Issue
Block a user