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 trial

Python Object-Oriented Python Inheritance Super!

I dont understand what this is asking me to do

This is what it says:

Great! Now override the add_item method. Use super() in it to make sure the item still gets added to the list.

inventory.py
class Inventory:
    def __init__(self):
        self.slots = []

    def add_item(self, item):
        self.slots.append(item)

class SortedInventory(Inventory):
    def __init__(self):
        super().__init__(self)

2 Answers

Steven Parker
Steven Parker
229,644 Points

This will be very similar to what you did to override __init__ and call the parent method using "super". In this step you'll create an override for add_item and call its parent method.

Other than the method name, the major difference is that add_item takes an argument.

Anupam Kumar
Anupam Kumar
3,795 Points

No sure what Wrong I am doing here ''' class Inventory: def init(self): self.slots = []

def add_item(self, item):
    self.slots.append(item)

class SortedInventory(Inventory): def init(self): super().add_item(self, item): self.slots.append(item) '''

Steven Parker
Steven Parker
229,644 Points

The challenge doesn't want you to append the item directly. You should use "super" to call the parent version of "add_item" and let it handle that job.