1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-22 02:47:14 +00:00
Files
core/homeassistant/components/homeassistant_alerts/const.py

12 lines
259 B
Python

"""Constants for the Home Assistant alerts integration."""
from datetime import timedelta
import aiohttp
COMPONENT_LOADED_COOLDOWN = 30
DOMAIN = "homeassistant_alerts"
UPDATE_INTERVAL = timedelta(hours=3)
REQUEST_TIMEOUT = aiohttp.ClientTimeout(total=30)