mirror of
https://github.com/home-assistant/core.git
synced 2025-05-03 05:29:14 +00:00
10 lines
195 B
Python
10 lines
195 B
Python
"""Constants for Dune HD integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Final
|
|
|
|
ATTR_MANUFACTURER: Final = "Dune"
|
|
DOMAIN: Final = "dunehd"
|
|
DEFAULT_NAME: Final = "Dune HD"
|