Don't use ALL CAPS in CSVs

Convert to lower case and update scripts.

Closes #13
This commit is contained in:
2022-04-16 18:44:20 +03:00
parent 3c507ddacf
commit a1928cd53a
4 changed files with 215 additions and 215 deletions

View File

@ -113,7 +113,7 @@ def parseSchema(schema_df):
required = False
# Combine element type and options into a "policy" of sorts and convert
# them to sentence case because they are ALL CAPS in the Excel. We don't
# them to sentence case because they are lowercase in the CSV. We don't
# need to do any checks because these fields should always exist.
policy = f'{row["element type"].capitalize()}. {row["element options"].capitalize()}.'