mirror of
https://github.com/home-assistant/core.git
synced 2025-05-28 17:57:08 +00:00

* Making tplink light more responsive. * Adding light platform tests. * Addressing PR feedback. * Mocking the module, not the api. * Using sync method for background update.
6 lines
117 B
Python
6 lines
117 B
Python
"""Const for TP-Link."""
|
|
import datetime
|
|
|
|
DOMAIN = "tplink"
|
|
MIN_TIME_BETWEEN_UPDATES = datetime.timedelta(seconds=8)
|