mirror of
https://github.com/elisspace/core.git
synced 2026-09-17 08:16:30 +00:00
* refactor - add const.py, change order of propertys, methods * import client at top of file * remove debug line * de-lint * delint * add me as CODEOWNER * remove lint hint * delint
10 lines
268 B
Python
10 lines
268 B
Python
"""Provides the constants needed for evohome."""
|
|
|
|
DOMAIN = 'evohome'
|
|
DATA_EVOHOME = 'data_' + DOMAIN
|
|
DISPATCHER_EVOHOME = 'dispatcher_' + DOMAIN
|
|
|
|
# These are used only to help prevent E501 (line too long) violations.
|
|
GWS = 'gateways'
|
|
TCS = 'temperatureControlSystems'
|