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 trialShreya Tyagi
3,011 PointsError in adding method by calling super function
add an add_item method to your new SortedInventory class. It should also take an item argument. Inside your new add_item method, use super() to call add_item() and pass it item to make sure the item still gets added to the slots list.
class Inventory:
def __init__(self):
self.slots = []
def add_item(self, item):
self.slots.append(item)
class SortedInventory(Inventory):
super().add_item(item)
1 Answer
Ave Nurme
20,907 PointsHi Shreya
You are missing some things in your code:
class Inventory:
def __init__(self):
self.slots = []
def add_item(self, item):
self.slots.append(item)
class SortedInventory(Inventory):
def add_item(self, item): # add an add_item method to your new SortedInventory class
super().add_item(item)
return self.slots # return the slots list
Hope this helps!