mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00
12 lines
244 B
Python
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
|