Home Assistant Unofficial Reference 2024.12.1
config_flow.py
Go to the documentation of this file.
1 """Config flow for MyQ integration."""
2 
3 from homeassistant.config_entries import ConfigFlow
4 
5 from . import DOMAIN
6 
7 
8 class MyQConfigFlow(ConfigFlow, domain=DOMAIN):
9  """Handle a config flow for MyQ."""
10 
11  VERSION = 1