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 trialDan Badertscher
5,327 PointsSheep Challenge Pt. 1: Object-Oriented Python
My code isn't passing, any advice?
from animal import Animal
class Sheep(Animal):
The error message is
" Bummer! SyntaxError: class Sheep(Animal): "
1 Answer
Jason Anello
Courses Plus Student 94,610 PointsHi Dan,
Your class doesn't have any code in it yet.
The task gives you a tip that you can create empty classes with pass
You can use pass
anytime you're not yet ready to write the code for a class or a function/method. It represents a line of code that doesn't do anything.
Dan Badertscher
5,327 PointsDan Badertscher
5,327 PointsThat worked. Thanks Jason!