From 3ddd8b0ca1d38d429a1fbd3d704e58bed52242fd Mon Sep 17 00:00:00 2001 From: Omar Date: Thu, 28 May 2026 12:31:33 +0300 Subject: [PATCH] Fix product type typo in line 199. --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index b4e2f64..8f19ca1 100644 --- a/main.py +++ b/main.py @@ -196,7 +196,7 @@ def parse_product(product: dict) -> dict: parsed_product["Body (HTML)"] = product.get("body_html", "") parsed_product["Vendor"] = product["vendor"] parsed_product["Product Category"] = "" - parsed_product["Product Category"] = product.get("product_type", "") + parsed_product["Type"] = product.get("product_type", "") parsed_product["Tags"] = f'"{', '.join(product['tags'])}"' parsed_product["Published"] = True main_images = [image["src"] for image in product["images"]]