hass-core/homeassistant/components/canary/model.py
2022-12-08 19:04:58 +01:00

14 lines
335 B
Python

"""Constants for the Canary integration."""
from __future__ import annotations
from collections.abc import ValuesView
from typing import TypedDict
from canary.model import Location
class CanaryData(TypedDict):
"""TypedDict for Canary Coordinator Data."""
locations: dict[str, Location]
readings: dict[str, ValuesView]