Fixed Syntax error
Browse files
engine.py
CHANGED
|
@@ -487,7 +487,7 @@ def _format_feedback(result: dict) -> str:
|
|
| 487 |
missed = result.get("missed_keywords", [])
|
| 488 |
star_hint = result.get("star_hint", False)
|
| 489 |
|
| 490 |
-
coverage_line = f"\n\nβββββββββββββββββββββββββ
|
| 491 |
if hit:
|
| 492 |
coverage_line += f"\nβ
Found: {', '.join(hit)}"
|
| 493 |
if missed:
|
|
|
|
| 487 |
missed = result.get("missed_keywords", [])
|
| 488 |
star_hint = result.get("star_hint", False)
|
| 489 |
|
| 490 |
+
coverage_line = f"\n\nβββββββββββββββββββββββββ"
|
| 491 |
if hit:
|
| 492 |
coverage_line += f"\nβ
Found: {', '.join(hit)}"
|
| 493 |
if missed:
|