diff --git a/atlasbot/engine/answerer.py b/atlasbot/engine/answerer.py index bf7d6fd..c7f10e9 100644 --- a/atlasbot/engine/answerer.py +++ b/atlasbot/engine/answerer.py @@ -1666,7 +1666,7 @@ def _format_hardware_groups(groups: dict[str, list[str]], label: str) -> str: parts = [] for hw, nodes in sorted(groups.items()): parts.append(f"{hw} ({', '.join(nodes)})") - return f\"{label}: \" + \"; \".join(parts) + \".\" + return f"{label}: " + "; ".join(parts) + "." def _lexicon_context(summary: dict[str, Any]) -> str: # noqa: C901