Working on bug fix for columns that are empty in first rows.

This commit is contained in:
Scott Idem
2024-04-23 18:53:37 -04:00
parent d82c1750fd
commit 9c45bea785
3 changed files with 185 additions and 2 deletions

View File

@@ -289,6 +289,7 @@ async def get_obj_li(
# Loop through key value pairs in the dictionary
log.info(f'Field value is a dict: {field_value}')
for key, value in field_value.items():
log.debug(f'Key: {key}')
new_field_name = field_name[:-8]+'__'+key
new_record[new_field_name] = value