forked from home-assistant/core
Add configuration.yaml deprecation warning to Epson (#50403)
* add deprecation warning * Break long string Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
This commit is contained in:
@@ -87,6 +87,10 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
|
|||||||
|
|
||||||
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
|
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
|
||||||
"""Set up the Epson projector."""
|
"""Set up the Epson projector."""
|
||||||
|
_LOGGER.warning(
|
||||||
|
"Loading Espon projector via platform setup is deprecated; "
|
||||||
|
"Please remove it from your configuration"
|
||||||
|
)
|
||||||
hass.async_create_task(
|
hass.async_create_task(
|
||||||
hass.config_entries.flow.async_init(
|
hass.config_entries.flow.async_init(
|
||||||
DOMAIN, context={"source": SOURCE_IMPORT}, data=config
|
DOMAIN, context={"source": SOURCE_IMPORT}, data=config
|
||||||
|
Reference in New Issue
Block a user