core/homeassistant/components/eight_sleep/config_flow.py

12 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