mirror of
https://github.com/home-assistant/core.git
synced 2025-08-03 12:45:28 +02:00
Prevent None strings in description_placeholders (#127103)
This commit is contained in:
@@ -2966,7 +2966,7 @@ class ConfigFlow(ConfigEntryBaseFlow):
|
||||
step_id: str | None = None,
|
||||
data_schema: vol.Schema | None = None,
|
||||
errors: dict[str, str] | None = None,
|
||||
description_placeholders: Mapping[str, str | None] | None = None,
|
||||
description_placeholders: Mapping[str, str] | None = None,
|
||||
last_step: bool | None = None,
|
||||
preview: str | None = None,
|
||||
) -> ConfigFlowResult:
|
||||
|
Reference in New Issue
Block a user