mirror of
https://github.com/home-assistant/core.git
synced 2026-05-08 09:38:58 +01:00
51acdeb563
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Erik Montnemery <erik@montnemery.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
8 lines
168 B
Python
8 lines
168 B
Python
"""Data models for the Orvibo integration."""
|
|
|
|
from orvibo.s20 import S20
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
|
|
type S20ConfigEntry = ConfigEntry[S20]
|