mirror of
https://github.com/home-assistant/core.git
synced 2026-09-18 06:28:02 +01:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
10 lines
216 B
Python
10 lines
216 B
Python
"""Constants for the liebherr integration."""
|
|
|
|
from datetime import timedelta
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "liebherr"
|
|
MANUFACTURER: Final = "Liebherr"
|
|
|
|
DEVICE_SCAN_INTERVAL: Final = timedelta(minutes=5)
|