1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-18 20:13:24 +01:00
Files
core/homeassistant/components/powerfox_local/const.py
T
2026-02-18 23:27:47 +01:00

12 lines
271 B
Python

"""Constants for the Powerfox Local integration."""
from __future__ import annotations
from datetime import timedelta
import logging
from typing import Final
DOMAIN: Final = "powerfox_local"
LOGGER = logging.getLogger(__package__)
SCAN_INTERVAL = timedelta(seconds=5)