* Add config flow for `simplepush` * fix warning message * fix typos * Add importing yaml config * patch integration setup * Add check for errrors raised by the library * fix coverage * Adjust comment and logging message Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
13 lines
320 B
Python
13 lines
320 B
Python
"""Constants for the simplepush integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "simplepush"
|
|
DEFAULT_NAME: Final = "simplepush"
|
|
DATA_HASS_CONFIG: Final = "simplepush_hass_config"
|
|
|
|
ATTR_ENCRYPTED: Final = "encrypted"
|
|
ATTR_EVENT: Final = "event"
|
|
|
|
CONF_DEVICE_KEY: Final = "device_key"
|
|
CONF_SALT: Final = "salt"
|