From c2f8fb9f22686786c13677cbdb2cb8252f14e6b2 Mon Sep 17 00:00:00 2001 From: Cizz22 Date: Sun, 5 Oct 2025 10:22:15 +0700 Subject: [PATCH] fix --- src/overhaul_gantt/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/overhaul_gantt/utils.py b/src/overhaul_gantt/utils.py index 193a07e..c1e7eec 100644 --- a/src/overhaul_gantt/utils.py +++ b/src/overhaul_gantt/utils.py @@ -76,7 +76,6 @@ def fetch_all_sections(service, spreadsheet_id, sheet_name): data = [] current_section = None current_subsystem = None - header = None for i, row in enumerate(values): @@ -113,7 +112,7 @@ def fetch_all_sections(service, spreadsheet_id, sheet_name): gap = row[9] data.append({ - "section": current_section, + "system": current_section, "subsystem": current_subsystem, "task": task, "PIC": pic,