1👍
✅
But that’s the point, you don’t need to know. A super call must always use the class that you define it in. Python resolves the reference using the MRO.
class RedirectMixin(object)
def response_add(...):
...
return super(RedirectMixin, self).response_add(...)
Source:stackexchange.com