sync_manager.py aktualisiert
This commit is contained in:
@@ -112,6 +112,7 @@ class SyncManager:
|
||||
return True
|
||||
|
||||
def run_sync(self):
|
||||
def run_sync(self):
|
||||
"""Führt den gesamten Synchronisationsprozess aus."""
|
||||
if not self._load_data():
|
||||
return
|
||||
@@ -201,7 +202,8 @@ class SyncManager:
|
||||
# 4. Änderungen ins Google Sheet schreiben
|
||||
if rows_to_append:
|
||||
self.logger.info(f"Füge {len(rows_to_append)} neue Zeilen zum Google Sheet hinzu...")
|
||||
self.sheet_handler.append_rows(rows_to_append)
|
||||
# --- KORREKTUR HIER ---
|
||||
self.sheet_handler.append_rows(values=rows_to_append)
|
||||
|
||||
if updates_to_batch:
|
||||
self.logger.info(f"Sende {len(updates_to_batch)} Zell-Updates an das Google Sheet...")
|
||||
|
||||
Reference in New Issue
Block a user