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 trialOzaveshe Balogun
Front End Web Development Techdegree Student 20,459 PointsI still get error message after implementing the white space as instructed. what am i doing wrong?
Hi guys. what am I doing wrong here?
def first_function(arg1): return 'arg1 is {}'.format(arg1)
def second_function(arg1): return 'arg1 is {}'.format(arg1)
class MyClass: args = [1, 2, 3]
def class_func(self):
return self.args
def first_function(arg1):
return 'arg1 is {}'.format(arg1)
def second_function(arg1):
return 'arg1 is {}'.format(arg1)
class MyClass:
args = [1, 2, 3]
def class_func(self):
return self.args
3 Answers
Steven Parker
231,198 PointsWhile it doesn't show up here, the message "blank line contains whitespace" probably means that one (or more) of the lines that appear blank here actually has one or more spaces or tabs on it in the challenge.
Click on the far right on each "blank" line, and if the cursor stops away from the far left side, backspace to remove the extra character(s).
Ozaveshe Balogun
Front End Web Development Techdegree Student 20,459 Pointsjust implemented. I get error message like: Your file has 1 error(s) on line(s) 11: blank line contains whitespace.
def first_function(arg1):
return 'arg1 is {}'.format(arg1)
def second_function(arg1):
return 'arg1 is {}'.format(arg1)
class MyClass:
args = [1, 2, 3]
def class_func(self):
return self.args
Ozaveshe Balogun
Front End Web Development Techdegree Student 20,459 Pointshahahaha.......you mean that little thing caused error.....Thanks very much for your help. I really appreciate
Steven Parker
231,198 PointsWell, it wouldn't cause a problem in actual practice, but this particular exercise is about precise use of spacing.
Happy coding!
Steven Parker
231,198 PointsSteven Parker
231,198 PointsTo display the code so that the spacing can be seen, edit it and apply Markdown formatting.