From 2eee4bb2415dab5a8ef74f941e1e441683ab04d5 Mon Sep 17 00:00:00 2001 From: Floke Date: Fri, 4 Apr 2025 19:34:13 +0000 Subject: [PATCH] Bugfix --- brancheneinstufung.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brancheneinstufung.py b/brancheneinstufung.py index 995c1c67..7a27c142 100644 --- a/brancheneinstufung.py +++ b/brancheneinstufung.py @@ -636,13 +636,13 @@ if __name__ == "__main__": processor.process_rows() elif MODE == "4": gh = GoogleSheetHandler() - start_index = gh.get_start_index(column_index=39) # Wiki-Timestamp (Spalte AN) + start_index = gh.get_start_index(39) # Wiki-Timestamp in Spalte AN debug_print(f"Wiki-Modus: Starte bei Zeile {start_index+1}") processor = DataProcessor() processor.process_rows() elif MODE == "5": gh = GoogleSheetHandler() - start_index = gh.get_start_index(column_index=40) # ChatGPT-Timestamp (Spalte AO) + start_index = gh.get_start_index(40) # ChatGPT-Timestamp in Spalte AO debug_print(f"ChatGPT-Modus: Starte bei Zeile {start_index+1}") processor = DataProcessor() processor.process_rows()