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

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
241,434 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
241,434 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