From eaa11633225650f0113b5891167ec60de0bb5471 Mon Sep 17 00:00:00 2001 From: Floke Date: Mon, 4 Aug 2025 12:16:18 +0000 Subject: [PATCH] data_processor.py aktualisiert --- data_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_processor.py b/data_processor.py index 345ba12b..9628d92f 100644 --- a/data_processor.py +++ b/data_processor.py @@ -5208,7 +5208,7 @@ class DataProcessor: # um die Spaltenindizes aus COLUMN_MAP (Block 1) zu finden. try: # Finde den hoechsten Index in COLUMN_MAP - max_col_idx_in_map = max(COLUMN_MAP.values()) + max_col_idx_in_map = max(d['index'] for d in COLUMN_MAP.values() if 'index' in d) # Pruefen Sie, ob die Anzahl der geladenen Spalten im Header # ausreicht if len(headers) <= max_col_idx_in_map: