Próbuję zrozumieć, czy powinienem to zrobić:
item = Model()
screen = View()
brain = Controller(item, screen)
albo to..
brain = Controller()
item = Model(brain)
screen = View(brain)
albo to..
class Controller():
def __init__(self):
item = Model(self)
screen = View(self)
czy coś zupełnie innego?