Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
381 B
Python
Raw Permalink Normal View History

"""Config flow to configure zone component.
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.
"""
from homeassistant.config_entries import ConfigFlow
2021-03-30 06:02:56 +02:00
from .const import DOMAIN
2019-09-29 20:07:49 +03:00
class ZoneConfigFlow(ConfigFlow, domain=DOMAIN):
"""Stub zone config flow class."""