2020-01-22 12:36:25 -08:00
|
|
|
"""Config flow to configure zone component.
|
2018-04-26 23:59:22 +02:00
|
|
|
|
2020-01-22 12:36:25 -08:00
|
|
|
This is no longer in use. This file is around so that existing
|
|
|
|
|
config entries will remain to be loaded and then automatically
|
|
|
|
|
migrated to the storage collection.
|
|
|
|
|
"""
|
2024-03-08 16:35:45 +01:00
|
|
|
|
2024-02-29 20:08:16 +01:00
|
|
|
from homeassistant.config_entries import ConfigFlow
|
2018-04-26 23:59:22 +02:00
|
|
|
|
2021-03-30 06:02:56 +02:00
|
|
|
from .const import DOMAIN
|
2019-09-29 20:07:49 +03:00
|
|
|
|
|
|
|
|
|
2024-02-29 20:08:16 +01:00
|
|
|
class ZoneConfigFlow(ConfigFlow, domain=DOMAIN):
|
2020-01-22 12:36:25 -08:00
|
|
|
"""Stub zone config flow class."""
|