hass-core/homeassistant/components/sharkiq/const.py
Quentame 198ecb0945
Uniformize platform setup ()
* A platform is not a component

* Fix dynalite

* SUPPORTED_PLATFORMS --> PLATFORMS

* In tests

* In tests 2

* Fix SmartThings

* Fix ZHA test

* Fix Z-Wave

* Revert Z-Wave

* Use PLATFORMS const in ambient_station

* Fix ihc comment
2021-03-02 21:43:59 +01:00

11 lines
230 B
Python

"""Shark IQ Constants."""
from datetime import timedelta
import logging
_LOGGER = logging.getLogger(__package__)
API_TIMEOUT = 20
PLATFORMS = ["vacuum"]
DOMAIN = "sharkiq"
SHARK = "Shark"
UPDATE_INTERVAL = timedelta(seconds=30)