
Tinotenda Emmanuel Nyamukapa
5,127 Pointswhy do i keep getting an error ?
everything seems to be in order where am i getting things wrong
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

Mark Sebeck
Treehouse Moderator 28,876 PointsYou need a blank line between args and the method class_func. Also need a carriage return after the last line (hit enter after "return self.args")