mirror of
https://github.com/home-assistant/core.git
synced 2026-05-31 04:34:10 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
12 lines
256 B
Python
12 lines
256 B
Python
"""Support for Qwikswitch devices."""
|
|
|
|
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)
|