Python: Inherit the superclass __init__

super(SubClass, self).__init__(...)

Consider using *args and **kw if it helps solving your variable nightmare.

Leave a Comment