fix: non-rpi format string

This commit is contained in:
Brad Stein 2026-02-03 16:26:29 -03:00
parent b019934db2
commit 9d4b899fdb

View File

@ -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