示例#1
0
    def __init__(self: 'ConsoleController', number_of_cheeses: int,
                 number_of_stools: int) -> None:
        """
        Initialize a new 'ConsoleController'.
        """

        TOAHModel.__init__(self, number_of_stools)
        TOAHModel.fill_first_stool(self, number_of_cheeses)
        self.cheese_model = TOAHModel(number_of_stools)
        self.number_of_stools = number_of_stools
        self.cheese_model.fill_first_stool(number_of_cheeses)