mirror of
https://github.com/home-assistant/core.git
synced 2026-08-24 10:13:52 -05:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
12 lines
241 B
Python
12 lines
241 B
Python
"""Config flow to configure Life360 integration."""
|
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from . import DOMAIN
|
|
|
|
|
|
class Life360ConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Life360 integration config flow."""
|
|
|
|
VERSION = 1
|