From c92169cb2048e9a8e4df56a35c646bab0073ef92 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Mon, 30 Sep 2024 15:57:37 +0200 Subject: [PATCH] Use a generic string as default description placeholder in workday config_flow (#127112) --- homeassistant/components/workday/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/workday/config_flow.py b/homeassistant/components/workday/config_flow.py index 58063961e54..2552fe849e2 100644 --- a/homeassistant/components/workday/config_flow.py +++ b/homeassistant/components/workday/config_flow.py @@ -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, "-"), }, )