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

use jc_types

This commit is contained in:
Kelly Brazil
2022-10-18 15:45:29 -07:00
parent bddfa71fa6
commit 2c4f232aaa

View File

@ -40,7 +40,7 @@ Examples:
{example output} {example output}
... ...
""" """
from typing import Dict, Iterable, Union from typing import Iterable
import jc.utils import jc.utils
from jc.streaming import ( from jc.streaming import (
add_jc_meta, streaming_input_type_check, streaming_line_input_type_check, raise_or_yield add_jc_meta, streaming_input_type_check, streaming_line_input_type_check, raise_or_yield
@ -64,7 +64,7 @@ class info():
__version__ = info.version __version__ = info.version
def _process(proc_data: Dict) -> Dict: def _process(proc_data: JSONDictType) -> JSONDictType:
""" """
Final processing to conform to the schema. Final processing to conform to the schema.