hass-core/homeassistant/components/wwlln/const.py
Aaron Bach 9a3c58213b
Validate WWLLN window size in config schema (#32621)
* Validate WWLLN window size in config schema

* Cleanup

* Clean up imports

* Fix tests
2020-03-09 17:18:39 -06:00

11 lines
204 B
Python

"""Define constants for the WWLLN integration."""
from datetime import timedelta
DOMAIN = "wwlln"
CONF_WINDOW = "window"
DATA_CLIENT = "client"
DEFAULT_RADIUS = 25
DEFAULT_WINDOW = timedelta(hours=1)