1
mirror of https://github.com/home-assistant/core synced 2024-10-01 05:30:36 +02:00
ha-core/homeassistant/components/notion/const.py
Paulus Schoutsen 4de97abc3a Black
2019-07-31 12:25:30 -07:00

14 lines
267 B
Python

"""Define constants for the Notion integration."""
from datetime import timedelta
DOMAIN = "notion"
DEFAULT_SCAN_INTERVAL = timedelta(minutes=1)
DATA_CLIENT = "client"
TOPIC_DATA_UPDATE = "data_update"
TYPE_BINARY_SENSOR = "binary_sensor"
TYPE_SENSOR = "sensor"