Skip to content

Commit

Permalink
Do not fill missing values in mig tables
Browse files Browse the repository at this point in the history
  • Loading branch information
olejandro committed Dec 19, 2024
1 parent 44eb3e3 commit a57639f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xl2times/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -953,8 +953,8 @@ def fill_in_missing_values_table(table):
return replace(table, dataframe=df)

for table in tables:
if table.tag == Tag.tfm_upd:
# Missing values in update tables are wildcards and should not be filled in
if table.tag in [Tag.tfm_mig, Tag.tfm_upd]:
# Missing values in these tables are wildcards and should not be filled in
result.append(table)
else:
result.append(fill_in_missing_values_table(table))
Expand Down

0 comments on commit a57639f

Please sign in to comment.