
Adam Cassano
12,968 Pointscan someone tell me whats wrong?
i've gone though this code line by line and i don't have any extra spacing or whitespace not sure whats the problem with this code
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
1 Answer

Mel Rumsey
Treehouse StaffHey Adam Cassano, You are almost there! It looks like you might be missing a new empty line at the end of your file. The last line of your file should be an empty newline according to pep8 standards.