ci: fix lint errors across project, update ruff.toml per-file ignores

This commit is contained in:
Celes Renata
2026-04-18 21:02:28 +00:00
parent 4d1894c652
commit 5f6d23888a
34 changed files with 1441 additions and 188 deletions
+4 -2
View File
@@ -1,5 +1,7 @@
import json
import os
from minio import Minio
import os, json
mc = Minio(os.environ["MINIO_ENDPOINT"], access_key=os.environ["MINIO_ACCESS_KEY"], secret_key=os.environ["MINIO_SECRET_KEY"], secure=False)
@@ -26,7 +28,7 @@ for o in objs:
if raw:
print(f" output ({len(raw)} chars): {raw[:200]}")
else:
print(f" output: (empty)")
print(" output: (empty)")
if not objs:
print(f"No LLM result found for {target}")