bugfix deepseek
This commit is contained in:
@@ -158,7 +158,7 @@ def query_gpt(row, wiki_url):
|
|||||||
|
|
||||||
# === HAUPTLOGIK ===
|
# === HAUPTLOGIK ===
|
||||||
try:
|
try:
|
||||||
start_index = next((i for i, row in enumerate(sheet_values[1:], start=1) if len(row) > 13 and not row[13].strip() else 1, 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:
|
except StopIteration:
|
||||||
start_index = 1
|
start_index = 1
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user