I understood now. Thank you so much. Em sex, 15 de jun de 2018 17:52, jackotonye <[email protected]> escreveu:
> By design mixins are applied in the order they are inherited. > > `class A: pass` > `class B: pass` > > ``` > class C(A, B): > def __init__(self, *args, **kwargs): > super().__init__(*args, **kwargs) # This will call > A.__init__() then B.__init__() > > > > ``` > > -- > You received this message because you are subscribed to the Google Groups > "Django developers (Contributions to Django itself)" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/django-developers. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-developers/37bf280c-f471-4249-a91a-a1809076e367%40googlegroups.com > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/CAMjWKi8w5ja7mx9orCzSXsSqv8dx%2BN69LPswAyYk59A4wCO7_g%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
