Line re-flow

This commit is contained in:
2025-01-02 10:20:54 +13:00
parent 59d9efe4bd
commit c4cc9a49d8

View File

@@ -40,7 +40,8 @@ def csv_to_xml(csv_file, xml_file, dtd_file):
item = ET.SubElement(root, "item")
ET.SubElement(item, "Item_ID").text = row["Item_ID"]
ET.SubElement(item, "Item_Name").text = row["Item_Name"]
ET.SubElement(item, "Item_Description").text = row["Item_Description"]
ET.SubElement(item, "Item_Description"
).text = row["Item_Description"]
ET.SubElement(item, "Item_Price").text = row["Item_Price"]
ET.SubElement(item, "Item_Quantity").text = row["Item_Quantity"]