mirror of
https://github.com/home-assistant/core.git
synced 2026-06-02 21:54:27 +01:00
3f9e7d1dba
Co-authored-by: Joostlek <joostlek@outlook.com>
12 lines
227 B
Python
12 lines
227 B
Python
"""Constants for the IntelliClima integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "intelliclima"
|
|
|
|
# Update interval
|
|
DEFAULT_SCAN_INTERVAL = timedelta(minutes=1)
|