@@ -177,6 +177,9 @@ async def async_step_user(
177177 step_id = "user" ,
178178 data_schema = _data_schema (self .discovered_conf ),
179179 errors = errors ,
180+ description_placeholders = {
181+ "sample_ip" : "http://192.168.10.100:80" ,
182+ },
180183 )
181184
182185 async def _async_set_unique_id_or_update (
@@ -302,7 +305,10 @@ async def async_step_reauth_confirm(
302305 CONF_HOST : existing_data [CONF_HOST ],
303306 }
304307 return self .async_show_form (
305- description_placeholders = {CONF_HOST : existing_data [CONF_HOST ]},
308+ description_placeholders = {
309+ CONF_HOST : existing_data [CONF_HOST ],
310+ "sample_ip" : "http://192.168.10.100:80" ,
311+ },
306312 step_id = "reauth_confirm" ,
307313 data_schema = vol .Schema (
308314 {
@@ -347,7 +353,13 @@ async def async_step_init(
347353 }
348354 )
349355
350- return self .async_show_form (step_id = "init" , data_schema = options_schema )
356+ return self .async_show_form (
357+ step_id = "init" ,
358+ data_schema = options_schema ,
359+ description_placeholders = {
360+ "sample_ip" : "http://192.168.10.100:80" ,
361+ },
362+ )
351363
352364
353365class InvalidHost (HomeAssistantError ):
0 commit comments