8 lines
169 B
Python
8 lines
169 B
Python
|
from core import Group
|
||
|
|
||
|
|
||
|
class Room(Group):
|
||
|
def __init__(self, *, id: str, name: str):
|
||
|
super().__init__(id=id, name=name)
|
||
|
self._device_type = "room"
|