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 Basic Object-Oriented Python Welcome to OOP Adding to our Panda

Gustavo Gutierrez
Gustavo Gutierrez
4,595 Points

object () 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

panda.py
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
Steven Parker
229,644 Points

Somehow 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
Gustavo Gutierrez
4,595 Points

Thank you so much Steven. This worked