2022-02-19 16:53:25 +00:00
|
|
|
"""Constants for the Pure Energie integration."""
|
2024-03-08 14:04:07 +00:00
|
|
|
|
2022-02-19 16:53:25 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from datetime import timedelta
|
|
|
|
import logging
|
|
|
|
from typing import Final
|
|
|
|
|
|
|
|
DOMAIN: Final = "pure_energie"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
SCAN_INTERVAL = timedelta(seconds=30)
|