mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 05:06:13 +01:00
14 lines
292 B
Python
14 lines
292 B
Python
"""Support for Qwikswitch devices."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
from homeassistant.util.hass_dict import HassKey
|
|
|
|
if TYPE_CHECKING:
|
|
from pyqwikswitch.async_ import QSUsb
|
|
|
|
DOMAIN = "qwikswitch"
|
|
DATA_QUIKSWITCH: HassKey[QSUsb] = HassKey(DOMAIN)
|