I use class based views and i need to inherit two form_valids from different views for example.
Class A(FormView)
def form_valid()
Does some stuff
return super().form_valid
Class B(FormView)
def form_valid()
Does some more stuff
return super().form_valid
Class C(Class A, Class B):
def form_valid()
takes form A and B stuff and does some more stuff
return super().form_valid
my Class C is only inheriting from the first form_valid and as this is a large project i'm trying to avoid having to revamp the views i'm inheriting to be able to just do the form stuff in class C.
All suggestions welcome