core: tournament
This commit is contained in:
@ -3,7 +3,7 @@ from .AbstractRoom import AbstractRoom
|
||||
class AbstractRoomManager:
|
||||
|
||||
def __init__(self):
|
||||
self._room_list: [AbstractRoom] = []
|
||||
self._room_list: list[AbstractRoom] = []
|
||||
|
||||
def remove(self, room: AbstractRoom):
|
||||
self._room_list.remove(room)
|
||||
|
Reference in New Issue
Block a user