mirror of
https://github.com/home-assistant/core.git
synced 2026-05-30 12:14:20 +01:00
10 lines
209 B
Python
10 lines
209 B
Python
"""Constants for the liebherr integration."""
|
|
|
|
from datetime import timedelta
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "liebherr"
|
|
MANUFACTURER: Final = "Liebherr"
|
|
|
|
REFRESH_DELAY: Final = timedelta(seconds=5)
|