1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-21 11:30:03 +00:00
Files
core/homeassistant/components/canary/model.py
2024-03-08 14:51:32 +01:00

16 lines
354 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, Reading
class CanaryData(TypedDict):
"""TypedDict for Canary Coordinator Data."""
locations: dict[str, Location]
readings: dict[str, ValuesView[Reading]]