• super().__init__

Question related to mission OOP 5: Parent - Child

 

My question is regarding of using function super() here. When I call parent _init_ method it means that it is expected to get just two named attributes, but for ElectricCar it is necessary to use in addition one positional argument, so calling super() is looks like useless call because I must re-initialize _init_ method with three arguments anyway.