Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Chiroi Niehus
6,729 PointsHaving Trouble on Code Challenge: Super! Task 3 of 3
I am not sure what to write inside the list.sort() method to sort the slots list. If somebody could help, it would be greatly appreciated. Thanks!
class Inventory:
def __init__(self):
self.slots = []
def add_item(self, item):
self.slots.append(item)
class SortedInventory(Inventory):
def add_item(self, item):
super().add_item(item)
def list.sort():
3 Answers

Steven Parker
220,425 PointsYou're close, here's couple of hints.
- you won't need to define another method
- remember that the list you want to sort is named slots ("
self.slots
")

Thapelo Mokgwaphe
5,892 PointsHi, Because you have inherited from Inventory. All methods and variables are available in SortedInventory class. The list you have to sort is called slots from Inventory. So all you need under is to write self.slots.sort() under add Item method

Oli Flemmer
13,394 PointsHi, I've just tried this and it doesn't seem to work

Steven Parker
220,425 PointsOli — If the hints here don't work for you, you might want to start a fresh question from within the challenge. Make sure it adds your code and a link as in this one.

Thapelo Mokgwaphe
5,892 PointsHello, Post the question