Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Steamist integration."""
2 
3 import aiohttp
4 
5 DOMAIN = "steamist"
6 
7 CONNECTION_EXCEPTIONS = (TimeoutError, aiohttp.ClientError)
8 
9 STARTUP_SCAN_TIMEOUT = 5
10 DISCOVER_SCAN_TIMEOUT = 10
11 
12 DISCOVERY = "discovery"