From b8caacd5c7b58a54cdb432f5114302ba186cf21b Mon Sep 17 00:00:00 2001 From: Floke Date: Fri, 9 May 2025 07:13:52 +0000 Subject: [PATCH] bugfix --- brancheneinstufung.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/brancheneinstufung.py b/brancheneinstufung.py index 4e110d74..5945a0ac 100644 --- a/brancheneinstufung.py +++ b/brancheneinstufung.py @@ -7339,7 +7339,10 @@ class DataProcessor: limit (int, optional): Maximale Anzahl ZU VERARBEITENDER Zeilen. Defaults to None (Unbegrenzt). """ self.logger.info(f"Starte Modus 'check_urls'. Sucht nach '{URL_CHECK_MARKER}' oder 'k.A. (Fehler...)' in AR. Bereich: {start_sheet_row if start_sheet_row is not None else 'Start'}-{end_sheet_row if end_sheet_row is not None else 'Ende'}, Limit: {limit if limit is not None else 'Unbegrenzt'}...") - + + # --- Konfiguration holen --- + update_batch_row_limit = getattr(Config, 'UPDATE_BATCH_ROW_LIMIT', 50) # <<< NEUE ZEILE HINZUGEFÜGT + if not self.sheet_handler.load_data(): self.logger.error("Fehler beim Laden der Daten fuer URL Check.") return