def __init__(self, title='', content='', project=None, **kwargs): kwargs['project'] = project super(Page, self).__init__(**kwargs) ProjectMixin.__init__(self, **kwargs) self.title = title self.content = content
def __init__(self, **kwargs): super(ProjMixClass, self).__init__(**kwargs) ProjectMixin.__init__(self, **kwargs)