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 trialRuslan Pilipyuk
857 PointsCould you please help me with that given task
x
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
14,242 PointsIn 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