Home Assistant Unofficial Reference 2024.12.1
config_flow.py
Go to the documentation of this file.
1 """Config flow to configure zone component.
2 
3 This is no longer in use. This file is around so that existing
4 config entries will remain to be loaded and then automatically
5 migrated to the storage collection.
6 """
7 
8 from homeassistant.config_entries import ConfigFlow
9 
10 from .const import DOMAIN
11 
12 
13 class ZoneConfigFlow(ConfigFlow, domain=DOMAIN):
14  """Stub zone config flow class."""