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 Object-Oriented Python Advanced Objects Double

Having a hard time with this question

I keep having trouble with this question, the class returns int without doubling it, how can I change my code to make it work. And also what is the use to override the new if I need to use it

doubler.py
class Double(int):

    def __init__(self, *args, **kwargs):
        def __new__(self, *args, **kwargs):
            super().__new__(*args, **kwargs)
            double = int*2
            return double

int = Double()

2 Answers

Steven Parker
Steven Parker
229,732 Points

The checker apparently gave you a false "pass" on task 2.

The "__new__" method should not be inside the "__init__" method.

hope this helps
,,,


class Double(int):
      def __new__(*args,**kwargs):
        return 2 * int.__new__(*args,**kwargs)



'''

,,,