hass-core/homeassistant/components/eight_sleep/config_flow.py
2023-10-25 06:13:10 +02:00

11 lines
244 B
Python

"""The Eight Sleep integration config flow."""
from homeassistant.config_entries import ConfigFlow
from . import DOMAIN
class EightSleepConfigFlow(ConfigFlow, domain=DOMAIN):
"""Handle a config flow for Eight Sleep."""
VERSION = 1