* Improve typing * One more typing fix * Run hassfest * Fix test * Fix return from constructor * Add missing Final * Improve long string format * Use bool for mute * Remove unnecessary str type * Fix host type * Add missing Final * Increase test coverage * Suggested change Co-authored-by: Ruslan Sayfutdinov <ruslan@sayfutdinov.com> Co-authored-by: Ruslan Sayfutdinov <ruslan@sayfutdinov.com>
8 lines
194 B
Python
8 lines
194 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"
|