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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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