mirror of
https://github.com/home-assistant/core.git
synced 2025-05-05 06:29:16 +00:00
14 lines
277 B
Python
14 lines
277 B
Python
"""Config flow to configure Life360 integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from . import DOMAIN
|
|
|
|
|
|
class Life360ConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Life360 integration config flow."""
|
|
|
|
VERSION = 1
|