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 trialCasey Huckel
Courses Plus Student 4,257 PointsWhat's wrong with my indentation here?
Check my code. I can't see what's wrong with it. I've tried many different indentations.
def small_function():
return True
def bigger_function():
a = 2
b = 4
return a,b
4 Answers
david carter
9,677 Pointsone thing that is weird is that the return True
line seems to be indented using a TAB, while you use spaces to indent the other lines.. try rewriting with consistent indentation.. but that return a,b
line definitely needs to be indented at the same level as the two lines above it..
works fine for me when i indent that last line, btw
david carter
9,677 Pointsreturn a,b
isn't inside the scope of the bigger_function
method..
try indenting that line
Casey Huckel
Courses Plus Student 4,257 PointsI tried that and no luck
Casey Huckel
Courses Plus Student 4,257 PointsI had to use Tab instead of the space bar. Thanks David