9 lines
180 B
Python
9 lines
180 B
Python
"""Constants for the Suez Water integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "suez_water"
|
|
|
|
CONF_COUNTER_ID = "counter_id"
|
|
|
|
DATA_REFRESH_INTERVAL = timedelta(hours=12)
|