chore: ran linter and formatter

This commit is contained in:
2025-12-27 19:41:22 +01:00
parent 6195abbaa5
commit 3880a4ec49
5 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ class PromptBuilder:
# Show first 5 results
for i, result in enumerate(result_list[:5]):
name = result.get("name", "Unknown")
lines.append(f" {i+1}. {name}")
lines.append(f" {i + 1}. {name}")
if len(result_list) > 5:
lines.append(f" ... and {len(result_list) - 5} more")