temp_label = Label(text= str(temp) + 'C', pos=(-300, -50))
temp_label.bind(on_touch_down = self.disappear)
self.add_widget(temp_label)
def disappear(self, label_instance, label_choice):
self.remove_widget(self.temp_label)
Я хочу удалить метку с помощью on_touch_down, но каждый раз, когда я это делаю, я получаю эту ошибку
AttributeError: 'UK_Weather' object has no attribute 'temp_label'
Выше всего лишь фрагмент кода, если возможно, ответ может быть в python язык