Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMaba Bah
2,744 PointsWhat exactly does super().__init__() do in THIS example specifically?
I know what super() is used for for the most part but, not within the context of this example. What init method does it override?, list?. Where is that defined?
1 Answer
Stephen Lorenz
3,271 PointsWhen we use super() in other circumstances, we're calling the parent class' method. In this instance, we're calling the parent's init, I believe that's all we're doing here. We're just saying in that line that the attributes from the parent's init are now also the new class' attributes. I could be wrong since I'm new to python, but this is my understanding.