from core import Group class Room(Group): def __init__(self, *, id: str, name: str): super().__init__(id=id, name=name) self._device_type = "room"