* Update to iaqualink 0.5.0. * Boolean conditional style fix Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Fix black formatting * Update iaqualink tests after update to 0.5.x * Remove debug print statements Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
5 lines
142 B
Python
5 lines
142 B
Python
"""Constants for the the iaqualink component."""
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "iaqualink"
|
|
UPDATE_INTERVAL = timedelta(seconds=15)
|