Fix group names for switch, light and devices

This commit is contained in:
Paulus Schoutsen 2015-01-19 23:47:18 -08:00
parent ff230cefe3
commit dbefeb3f6b
3 changed files with 6 additions and 9 deletions

View file

@ -17,9 +17,8 @@ from homeassistant.components import group, discovery, wink
DOMAIN = 'switch'
DEPENDENCIES = []
GROUP_NAME_ALL_SWITCHES = 'all_switches'
ENTITY_ID_ALL_SWITCHES = group.ENTITY_ID_FORMAT.format(
GROUP_NAME_ALL_SWITCHES)
GROUP_NAME_ALL_SWITCHES = 'all switches'
ENTITY_ID_ALL_SWITCHES = group.ENTITY_ID_FORMAT.format('all_switches')
ENTITY_ID_FORMAT = DOMAIN + '.{}'