Exemplo n.º 1
0
def create_game(chat, timeslot) -> Game:
    """Creates new game"""
    game = Game(timeslot=timeslot)
    game.create()
    current_chat = get_chat(chat)
    current_chat.add_game(game)
    return game