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()