From d3ce1f39f5dd5f14565d728aba21942603908c25 Mon Sep 17 00:00:00 2001 From: Floke Date: Fri, 4 Apr 2025 16:27:48 +0000 Subject: [PATCH] bugfix --- brancheneinstufung.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/brancheneinstufung.py b/brancheneinstufung.py index 1df42d56..c23778a0 100644 --- a/brancheneinstufung.py +++ b/brancheneinstufung.py @@ -674,9 +674,9 @@ if __name__ == "__main__": for row_num in row_indices: main_sheet.update(values=[[str(token_count)]], range_name=f"AQ{row_num}") debug_print(f"Batch-Token-Zählung abgeschlossen. Token: {token_count}") - elif MODE == "51": - gh = GoogleSheetHandler() - start_index = gh.get_start_index(column_index=40) # Spalte AO prüfen - debug_print(f"Verifizierungsmodus: Starte bei Zeile {start_index+1}") - process_verification_only() + elif MODE == "51": + gh = GoogleSheetHandler() + start_index = gh.get_start_index(column_index=40) # Spalte AO prüfen + debug_print(f"Verifizierungsmodus: Starte bei Zeile {start_index+1}") + process_verification_only() print(f"\n✅ Auswertung abgeschlossen ({Config.VERSION})")