db2c4ec880
split out sucks constants to their own file, no need to define verify ssl. if bumper is true then verify ssl false
14 lines
316 B
Python
14 lines
316 B
Python
import logging
|
|
LOGGER = logging.getLogger(__name__)
|
|
|
|
#ecovacs constants
|
|
#init constants
|
|
ECOVACS_DEVICES = "ecovacs_devices"
|
|
DOMAIN = "ecovacs"
|
|
CONF_COUNTRY = "country"
|
|
CONF_CONTINENT = "continent"
|
|
#bumper config vars
|
|
CONF_BUMPER = "bumper"
|
|
CONF_BUMPER_SERVER = "bumper_server"
|
|
SERVER_ADDRESS = None
|
|
VERIFY_SSL = True |