Marc Mueller 40b99135e5
Use platform enum (3) [H-L] (#60937)
Co-authored-by: epenet <6771947+epenet@users.noreply.github.com>
2021-12-05 17:10:07 -10:00

10 lines
224 B
Python

"""The lookin integration constants."""
from __future__ import annotations
from typing import Final
from homeassistant.const import Platform
DOMAIN: Final = "lookin"
PLATFORMS: Final = [Platform.CLIMATE, Platform.SENSOR]