Use a generic string as default description placeholder in workday config_flow (#127112)

pull/127125/head
epenet 2024-09-30 15:57:37 +02:00 committed by GitHub
parent 927813ab3b
commit c92169cb20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ class WorkdayConfigFlow(ConfigFlow, domain=DOMAIN):
errors=errors,
description_placeholders={
"name": self.data[CONF_NAME],
"country": self.data.get(CONF_COUNTRY, "(not set)"),
"country": self.data.get(CONF_COUNTRY, "-"),
},
)