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 trialTAKUDZWA MUCHINEUTA
6,039 PointsTask 2 of the Doubles Challenge in Python OOP. I am not sure where l am getting it wrong. Kindly assist
Now override new. Create a new int instance from whatever is passed in as arguments and keyword arguments. Return that instance.
You should remove the pass.
i keep on receiving bummer Try again. Am l writing the wrong code
class Double(int):
def __new__(*args, **kwargs):
power = int. __new__(*args, **kwargs)
return power
2 Answers
Steven Parker
231,198 PointsYou're close, you just have an indentation error.
For the "return" to be considered part of the method, it needs to be indented one more step to line up with the assignment.
TAKUDZWA MUCHINEUTA
6,039 Pointsthanks so much. don"t know how it escaped my attention
Kars Jansens
5,348 PointsKars Jansens
5,348 Pointshey Steven,
I have a question. what does this
power = int. __new__(*args, **kwargs)
and what do you mean with 'it needs to be indented one more step to line up with the assignment.'
Kars
Steven Parker
231,198 PointsSteven Parker
231,198 PointsThat line creates the new "int" instance, and if you look at the original code you can see the "return" line is indented as much as the "def" line, but that means it is not part of the method. It needs to be indented more (as much as the assignment statement above it) so that it is part of the method.