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