core: fix: matchmaking and game
This commit is contained in:
@ -5,8 +5,8 @@ class AbstractRoomManager:
|
||||
def __init__(self):
|
||||
self._room_list: list[AbstractRoom] = []
|
||||
|
||||
def remove(self, room: AbstractRoom):
|
||||
def remove(self, room: AbstractRoom) -> None:
|
||||
self._room_list.remove(room)
|
||||
|
||||
def append(self, room: AbstractRoom):
|
||||
def append(self, room: AbstractRoom) -> None:
|
||||
self._room_list.append(room)
|
||||
|
Reference in New Issue
Block a user