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.

Akshaan Mazumdar
3,245 PointsCode not working
How to create an int instance of whatever is passed in?
class Double (int):
def __new__(*args,**kwargs):
self=int.__new__(*args,**kwargs)
self1=self
return self1
1 Answer

Steven Parker
216,136 PointsYou're really close! I tried pasting your code into the challenge, and it already passes task 2.
Now to pass task 3, you only need to multiply the value that your __new__
method returns.