mirror of
https://github.com/home-assistant/core.git
synced 2025-06-11 08:37:09 +00:00
12 lines
230 B
Python
12 lines
230 B
Python
"""Shark IQ Constants."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
API_TIMEOUT = 20
|
|
COMPONENTS = ["vacuum"]
|
|
DOMAIN = "sharkiq"
|
|
LOGGER = logging.getLogger(__package__)
|
|
SHARK = "Shark"
|
|
UPDATE_INTERVAL = timedelta(seconds=30)
|