Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

chinmayanand mishra
3,914 PointsCode showing error
import random
class Characters:
def __init__(self,name, **kwargs):
self.name=name
for key,value in kwargs.items():
setattr(self,key,value)
class Theif(Characters): sneky = True
def __init__(self,sneky,**kwargs):
self.sneky=sneky
super().__init__(name,**kwargs) # Undefined variable name but i am calling the super its should work
def pickpocket(self):
print("Calle'd by the {}".format(self))
if self.sneky:
return bool(random.randint(0 ,1 ))
else:
return False
def hide(self, light_level):
return self.sneky and light_level<10
Once i add the name in the theif class init parameters then the error is corrected. Wanted to understand what is wrong in the same