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 trialGustavo Gutierrez
4,595 Pointsobject () takes no parameters error how to fix
I am looking on the community and dont see a answer to why this is happening. I want to know what I am doing wrong.
thanks
class Panda:
species = 'Ailuropoda melanoleuca'
food = 'bamboo'
def __init__(self, name, age):
self.name = name
self.age = age
self.is_hungry = True
1 Answer
Steven Parker
231,268 PointsSomehow it appears that the entire definition of the __init__
method lost its indentation level (it was indented to begin with in the challenge). To fix it, highlight the entire method block and press the CTRL and ] (close bracket) keys.
Gustavo Gutierrez
4,595 PointsGustavo Gutierrez
4,595 PointsThank you so much Steven. This worked