* Changed cache file path * Cache file naming scheme matches original * Restart tests * Adding cache path to config_flow.py * Moved DEFAULT_CACHEDB to consts file * Use correct cache path * Linting issues
5 lines
161 B
Python
5 lines
161 B
Python
"""Constants for the Abode Security System component."""
|
|
DOMAIN = "abode"
|
|
ATTRIBUTION = "Data provided by goabode.com"
|
|
|
|
DEFAULT_CACHEDB = "abodepy_cache.pickle"
|