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!

Could you please help me with that given task

x

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

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

class SortedInventory(Inventory):
    def add_item(self, item):
        list.sort()
        super().add_item(item)

1 Answer

boi
boi
14,241 Points

In your SortedInventory(Inventory) class, you have used a method list.sort() but the problem is that what is this list you want to sort? There is no variable or list by the name of list in your code, If you are looking for a list in your code then what I can find is the self.slots = [] which is obviously a list.

Try using the sort method πŸ‘‰list.sort() on self.slots instead, ALSO πŸ‘‡

class SortedInventory(Inventory):
    def add_item(self, item):
        #Don't put the sort method in this line of code, use if after the super() method ❌
        super().add_item(item)
       #Put it here  πŸ‘ˆβœ”

Do these changes, if the problem persists, post back here again