1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

remove unused _process function

This commit is contained in:
Kelly Brazil
2024-02-04 11:32:29 -08:00
parent 4bb85195e2
commit 86a09c17cf

View File

@ -215,7 +215,7 @@ class info():
description = '`curl --head` command parser'
author = 'Kelly Brazil'
author_email = 'kellyjonbrazil@gmail.com'
details = 'Using the http-headers parser.'
details = 'Using the http-headers parser'
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd']
tags = ['command', 'standard']
magic_commands = ['curl']
@ -235,21 +235,6 @@ def _remove_extra_chars(data: str, verbose: bool) -> str:
return data
def _process(proc_data: List[JSONDictType]) -> List[JSONDictType]:
"""
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.
"""
return proc_data
def parse(
data: str,
raw: bool = False,
@ -280,6 +265,8 @@ def parse(
curl_verbose = True
data_list = [_remove_extra_chars(x, verbose=curl_verbose) for x in data_list]
data_str = '\n'.join(data_list)
headers_parser.info = info # type: ignore
raw_output = headers_parser.parse(data_str, raw, quiet)
return raw_output if raw else _process(raw_output)
return raw_output