hass-core/homeassistant/components/onewire/model.py
2021-08-24 10:37:59 +02:00

12 lines
248 B
Python

"""Type definitions for 1-Wire integration."""
from __future__ import annotations
from typing import TypedDict
class OWServerDeviceDescription(TypedDict):
"""OWServer device description class."""
path: str
family: str
type: str