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

Python Object-Oriented Python (retired) Inheritance Override Inherited Methods

Step 3 of override inheritance not passing

step 3 of this challenge is to override the Animal.noise() method from the animal class with a new method. As per the previous video on the subject, redefing the method in the new class should do the trick. The code below gives back that task 1 is no longer passing. Changing the method to Sheep.noise() doesn't change the result.

sheep.py
from animal import Animal

class Sheep(Animal):
  sound = 'BAAH'

  def Animal.noise(self):
    return self.sound.upper()

step 1 define a class Sheep that inherits animal step 2 the sound of sheep should be someting step 3 change the way Animal.noise() works

2 Answers

Seth Kroger
Seth Kroger
56,413 Points

You do want to define Sheep.noise() to override Animal.noise() but you don't need the "Sheep." part because you are already inside the Sheep class.

  def noise(self):
    return self.sound.upper()

thank you Seth