Практикум «Python Essential» класы 10 задача

не принимает тренажер
class MyObject:
def init(self):
self.__attribute = 0

@property
def attribute(self):
    return self.__attribute

@attribute.setter
def attribute(self, value):
    self.__attribute = value

в чем может быть проблема?