python-table-converter 0.2.12__tar.gz → 0.2.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/PKG-INFO +1 -1
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/pyproject.toml +1 -1
- python_table_converter-0.2.13/table_converter/__init__.py +2 -0
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/core/config.py +2 -0
- python_table_converter-0.2.12/table_converter/__init__.py +0 -2
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/LICENSE +0 -0
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/README.md +0 -0
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/cli.py +0 -0
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/commands/convert_tables.py +0 -0
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/core/constants.py +0 -0
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/core/convert.py +0 -0
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/core/functions/assign_id.py +0 -0
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/core/functions/flatten.py +0 -0
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/core/functions/get_field_value.py +0 -0
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/core/functions/search_column_value.py +0 -0
- {python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/core/functions/set_field_value.py +0 -0
{python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/core/config.py
RENAMED
|
@@ -133,6 +133,8 @@ def setup_process_filter_config(
|
|
|
133
133
|
dict_process: Mapping,
|
|
134
134
|
):
|
|
135
135
|
list_subprocess = dict_process.get('filter')
|
|
136
|
+
if list_subprocess is None:
|
|
137
|
+
return
|
|
136
138
|
if not isinstance(list_subprocess, list):
|
|
137
139
|
raise ValueError(
|
|
138
140
|
'Filter must be a list.'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/core/constants.py
RENAMED
|
File without changes
|
{python_table_converter-0.2.12 → python_table_converter-0.2.13}/table_converter/core/convert.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|