I have 2 classes defined like:
class Parent(models.Model)
# class definition
And the second class:
class Child(models.Manager):
def get_queryset(self):
pass
Now I want to override the 'objects' of class Parent. Normally it will go like this:
class Parent():
objects = Child()
But I can't modify class Parent because it's a third party library. Is there any workaround for this problem?