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