Ensure homekit_controller config flow title_placeholders items are [str, str] (#127198)

This commit is contained in:
Erik Montnemery
2024-10-02 19:58:47 +02:00
committed by GitHub
parent 5a4cdaf348
commit fed953023d

View File

@@ -535,7 +535,7 @@ class HomekitControllerFlowHandler(ConfigFlow, domain=DOMAIN):
assert self.category
placeholders = self.context["title_placeholders"] = {
"name": self.name,
"name": self.name or "Homekit Device",
"category": formatted_category(self.category),
}