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.
|
|
|
|
"""
|
2018-09-17 10:12:46 +02:00
|
|
|
from homeassistant import config_entries
|
2018-08-09 04:24:14 -07:00
|
|
|
|
2021-03-30 06:02:56 +02:00
|
|
|
from .const import DOMAIN
|
2018-04-26 23:59:22 +02:00
|
|
|
|
|
|
|
|
2020-01-22 12:36:25 -08:00
|
|
|
class ZoneConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
|
|
"""Stub zone config flow class."""
|