1
0
mirror of https://github.com/home-assistant/core.git synced 2026-06-02 13:44:32 +01:00
Files
core/homeassistant/components/sharkiq/const.py
T
2022-01-20 13:44:41 +01:00

14 lines
278 B
Python

"""Shark IQ Constants."""
from datetime import timedelta
import logging
from homeassistant.const import Platform
LOGGER = logging.getLogger(__package__)
API_TIMEOUT = 20
PLATFORMS = [Platform.VACUUM]
DOMAIN = "sharkiq"
SHARK = "Shark"
UPDATE_INTERVAL = timedelta(seconds=30)