Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Home Assistant alerts integration."""
2 
3 from datetime import timedelta
4 
5 import aiohttp
6 
7 COMPONENT_LOADED_COOLDOWN = 30
8 DOMAIN = "homeassistant_alerts"
9 UPDATE_INTERVAL = timedelta(hours=3)
10 
11 REQUEST_TIMEOUT = aiohttp.ClientTimeout(total=30)