Skip to content

Commit 5786ea1

Browse files
committed
fix: resolve ruff lint errors in mock LLM service
1 parent 18cce2b commit 5786ea1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/app/services/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ async def suggest_refactor(self, code: str, language: str) -> tuple[str, bool]:
374374
for bp in best_practices:
375375
suggestions += f"- {bp}\n"
376376

377-
suggestions += f"\nOverall, these refactoring suggestions would improve the code's **readability**, **maintainability**, and **robustness** without changing its core behavior."
377+
suggestions += "\nOverall, these refactoring suggestions would improve the code's **readability**, **maintainability**, and **robustness** without changing its core behavior."
378378

379379
await set_cached(cache_key, {"suggestions": suggestions}, ttl=3600)
380380
return suggestions, False

0 commit comments

Comments
 (0)