Normalizing device type a bit
This commit is contained in:
parent
8a2773a97c
commit
04e44849ee
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ class Entity:
|
|||
self._id = id
|
||||
self._name = name
|
||||
self._room = room
|
||||
self._device_type = device_type
|
||||
self._device_type = device_type.strip().lower()
|
||||
self._groups = set(groups)
|
||||
self.__is_on__: bool | None = None
|
||||
|
||||
|
|
Loading…
Reference in a new issue