From afd63b4aa4e81a8b7e2bbb30dab97ec06cea6b67 Mon Sep 17 00:00:00 2001 From: Malin Date: Mon, 23 Mar 2026 12:31:02 +0100 Subject: [PATCH] fix: read type from col I (index 8) not col G Co-Authored-By: Claude Sonnet 4.6 --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 63d13f3..7d9c67d 100644 --- a/main.py +++ b/main.py @@ -93,7 +93,7 @@ def download_and_parse(): brand_raw = row[9] # col J brand = str(brand_raw) if brand_raw is not None else "" min_box_raw = row[10] # col K - type_raw = row[6] # col G + type_raw = row[8] # col I product_type = re.sub(r'^\d+\.', '', str(type_raw)).strip() if type_raw is not None else "" description = re.sub(r'\s*\(\d+\).*$', '', raw_desc).strip() parsed.append(