Home Assistant Unofficial Reference 2024.12.1
config_flow.py
Go to the documentation of this file.
1 """Config flow to configure Life360 integration."""
2 
3 from __future__ import annotations
4 
5 from homeassistant.config_entries import ConfigFlow
6 
7 from . import DOMAIN
8 
9 
10 class Life360ConfigFlow(ConfigFlow, domain=DOMAIN):
11  """Life360 integration config flow."""
12 
13  VERSION = 1