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 trialAizah Sadiq
2,435 PointsError
I am getting a TypeError: object() takes no parameters
Here is my code
class Character:
def __init(self, name, **kwargs):
self.name = name
for key, value in kwargs.items():
setattr(self, key, value)
class Thief(Character):
sneaky = True
def pickpocket(self):
return self.sneaky and bool(random.randint(0, 1))
def hide(self, light_level):
return self.sneaky and light_level < 10
```
Here is what is happening in the console
treehouse:~/workspace$ python
Python 3.6.4 (default, Nov 19 2019, 17:12:46)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
from characters import Thief
kenneth = Thief("Kenneth")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: object() takes no parameters
2 Answers
Ave Nurme
20,907 PointsHi Falah!
One thing I noticed is that you are definitely missing something here:
def __init(self, name, **kwargs):
Not sure if that fixes your code...
Aizah Sadiq
2,435 PointsNevermind, I was able to fix it :) Thanks for your help!