add print statement

This commit is contained in:
Camryn Thomas 2024-03-01 19:24:47 -06:00
parent fc9ff4c8b2
commit f12d8a8062
Signed by: cptlobster
GPG Key ID: 6D341D688163A176

View File

@ -235,6 +235,8 @@ def flatten(tables):
# if the item has at least two commas in it, split it
if tables[table][key].count(',') >= 2:
out[fullkeyname] = map(lambda x: x.strip(), tables[table][key].split(","))
print("\"" + keyname + "\":", "\"" + str(out[fullkeyname]) + "\",")
print("}")
return out