9 lines
196 B
Python
9 lines
196 B
Python
"""Constants for the Rituals Perfume Genie integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "rituals_perfume_genie"
|
|
|
|
ACCOUNT_HASH = "account_hash"
|
|
|
|
UPDATE_INTERVAL = timedelta(minutes=2)
|