Files

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)