7 lines
145 B
Python
7 lines
145 B
Python
|
from matrix_client.room import Room
|
||
|
|
||
|
|
||
|
class CustomRoom(Room):
|
||
|
def __init__(self, client, room_id):
|
||
|
super().__init__(client, room_id)
|