Skip to content

Commit 204ce4d

Browse files
committed
fix: repairs messages literal formatting
1 parent 064d33d commit 204ce4d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

custom_components/closest_intent/conversation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,8 +1194,8 @@ def _format_clashes(clashes: list[dict]) -> str:
11941194
lines.append(f"- `{c['pattern']}` matched nothing above threshold")
11951195
else:
11961196
lines.append(
1197-
f"- {c['pattern']}` is matched as `{c['got_pattern']}`"
1198-
f"`from `{c['got_intent']}` (score {c['score']})"
1197+
f"- `{c['pattern']}` is matched as `{c['got_pattern']}`"
1198+
f"from `{c['got_intent']}` (score {c['score']})"
11991199
)
12001200
sections.append("\n".join(lines))
12011201

0 commit comments

Comments
 (0)