This commit is contained in:
2025-04-04 19:34:13 +00:00
parent 29e1250a7e
commit 2eee4bb241

View File

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