From def7aa5764e69cd0cf2c5b70aa62c62023f76c9c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 10 Mar 2022 15:36:11 -0800 Subject: [PATCH] formatting --- docs/parsers/universal.md | 16 ++++++++-------- jc/parsers/universal.py | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/parsers/universal.md b/docs/parsers/universal.md index 934249c1..934b203c 100644 --- a/docs/parsers/universal.md +++ b/docs/parsers/universal.md @@ -23,10 +23,10 @@ may contain data with spaces. Example Table: - col1 col2 col3 col4 col5 - apple orange pear banana my favorite fruits - carrot squash celery spinach my favorite veggies - chicken beef pork eggs my favorite proteins + col1 col2 col3 col4 col5 + apple orange pear banana my favorite fruits + carrot squash celery spinach my favorite veggies + chicken beef pork eggs my favorite proteins Parameters: @@ -56,10 +56,10 @@ Data elements must line up within column boundaries. Example Table: - col1 col2 col3 col4 col5 - orange pear fuzzy peach my favorite fruits - green beans celery spinach my favorite veggies - chicken beef pork brown eggs my favorite proteins + col1 col2 col3 col4 col5 + apple orange fuzzy peach my favorite fruits + green beans celery spinach my favorite veggies + chicken beef brown eggs my favorite proteins Parameters: diff --git a/jc/parsers/universal.py b/jc/parsers/universal.py index ac1ed969..1be0812f 100644 --- a/jc/parsers/universal.py +++ b/jc/parsers/universal.py @@ -12,10 +12,10 @@ def simple_table_parse(data: List[str]) -> List[Dict]: Example Table: - col1 col2 col3 col4 col5 - apple orange pear banana my favorite fruits - carrot squash celery spinach my favorite veggies - chicken beef pork eggs my favorite proteins + col1 col2 col3 col4 col5 + apple orange pear banana my favorite fruits + carrot squash celery spinach my favorite veggies + chicken beef pork eggs my favorite proteins Parameters: @@ -48,10 +48,10 @@ def sparse_table_parse(data: List[str], delim: str = '\u2063') -> List[Dict]: Example Table: - col1 col2 col3 col4 col5 - orange pear fuzzy peach my favorite fruits - green beans celery spinach my favorite veggies - chicken beef pork brown eggs my favorite proteins + col1 col2 col3 col4 col5 + apple orange fuzzy peach my favorite fruits + green beans celery spinach my favorite veggies + chicken beef brown eggs my favorite proteins Parameters: