fix: non-rpi format string
This commit is contained in:
parent
b019934db2
commit
9d4b899fdb
@ -1666,7 +1666,7 @@ def _format_hardware_groups(groups: dict[str, list[str]], label: str) -> str:
|
|||||||
parts = []
|
parts = []
|
||||||
for hw, nodes in sorted(groups.items()):
|
for hw, nodes in sorted(groups.items()):
|
||||||
parts.append(f"{hw} ({', '.join(nodes)})")
|
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
|
def _lexicon_context(summary: dict[str, Any]) -> str: # noqa: C901
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user