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 trialTijn-Pieter Koopman
4,128 PointsSuper! task 2 of 3
I don't really know what I have to do here.
class Inventory:
def __init__(self):
self.slots = []
def add_item(self, item):
self.slots.append(item)
class SortedInventory(Inventory):
super().add_item(item)
def add_item(item):
self.slots.append(item)
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsYou are very close!
- You need to include
self
as the first argument inSortedInventory.add_item()
definition - The
super
call should be inside theSortedInventory.add_item()
definition - You do not need to include the
append
statement since the append is performed during thesuper
call
Post back if you need more help. Good Luck!
Tijn-Pieter Koopman
4,128 PointsTijn-Pieter Koopman
4,128 PointsThanks it worked! do you also know task 3?
I tried:
but it said that slots is not defined
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsWhen the challenge says "use the
list.sort()
method", it means that sinceself.slots
is a list, it has asort()
method that can be used to sort itself:self.slots.sort()
. Be sure the sort is done within the method.