From 6b67bdf85df3759e2e6706926a1af760b2828eef Mon Sep 17 00:00:00 2001 From: Floke Date: Sun, 30 Mar 2025 15:31:38 +0000 Subject: [PATCH] bugfix Deepsek2 --- brancheneinstufung.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brancheneinstufung.py b/brancheneinstufung.py index 935b1a14..4deee19c 100644 --- a/brancheneinstufung.py +++ b/brancheneinstufung.py @@ -158,7 +158,7 @@ def query_gpt(row, wiki_url): # === HAUPTLOGIK === try: -start_index = next((i for i, row in enumerate(sheet_values[1:], start=1) if len(row) > 13 and not row[13].strip()), 1) + start_index = next((i for i, row in enumerate(sheet_values[1:], start=1) if len(row) > 13 and not row[13].strip()), 1) except StopIteration: start_index = 1