I thought I understood the role of super in traversing the MRO but I ran across a python file at my job that contains:
super().__init__() # no parameters
in a base class __init__() and I can't ask the original author. This is in a piece of python3 code but I don't know what version was running when it was originally added.
I would think this would just do nothing or at worst call Object.
Any insight would be appreciated.