diff --git a/docs/parsers/ini.md b/docs/parsers/ini.md index d5976a20..3c0d2aa6 100644 --- a/docs/parsers/ini.md +++ b/docs/parsers/ini.md @@ -98,4 +98,4 @@ Compatibility: linux, darwin, cygwin, win32, aix, freebsd Source: [`jc/parsers/ini.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ini.py) -Version 2.2 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 2.1 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ini_dup.md b/docs/parsers/ini_dup.md index 98a1f237..a4a74d83 100644 --- a/docs/parsers/ini_dup.md +++ b/docs/parsers/ini_dup.md @@ -120,4 +120,4 @@ Compatibility: linux, darwin, cygwin, win32, aix, freebsd Source: [`jc/parsers/ini_dup.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ini_dup.py) -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/url.md b/docs/parsers/url.md index 8a4d1096..851b6996 100644 --- a/docs/parsers/url.md +++ b/docs/parsers/url.md @@ -261,4 +261,4 @@ Source: [`jc/parsers/url.py`](https://github.com/kellyjonbrazil/jc/blob/master/j This parser can be used with the `--slurp` command-line option. -Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/ini.py b/jc/parsers/ini.py index 08a3e05e..64d5ae66 100644 --- a/jc/parsers/ini.py +++ b/jc/parsers/ini.py @@ -75,7 +75,7 @@ import uuid class info(): """Provides parser metadata (version, author, etc.)""" - version = '2.2' + version = '2.1' description = 'INI file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/jc/parsers/ini_dup.py b/jc/parsers/ini_dup.py index dff0ef39..bb94ea43 100644 --- a/jc/parsers/ini_dup.py +++ b/jc/parsers/ini_dup.py @@ -97,7 +97,7 @@ import uuid class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.2' description = 'INI with duplicate key file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/jc/parsers/path_list.py b/jc/parsers/path_list.py index 05489a13..09095ed5 100644 --- a/jc/parsers/path_list.py +++ b/jc/parsers/path_list.py @@ -80,22 +80,6 @@ class info(): __version__ = info.version -def _process(proc_data: List[Dict]) -> List[Dict]: - """ - Final processing to conform to the schema. - - Parameters: - - proc_data: (List of Dictionaries) raw structured data to process - - Returns: - - List of Dictionaries. Structured to conform to the schema. - """ - # no changes - return proc_data - - def parse(data, raw=False, quiet=False): """ Main text parsing function @@ -124,4 +108,4 @@ def parse(data, raw=False, quiet=False): if jc.utils.has_data(data) ] - return raw_output if raw else _process(raw_output) + return raw_output diff --git a/jc/parsers/url.py b/jc/parsers/url.py index 263d41f5..8984ccb8 100644 --- a/jc/parsers/url.py +++ b/jc/parsers/url.py @@ -240,7 +240,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.1' description = 'URL string parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com'