self.labelText = 'change the value'
Above sentence make labelText to reference ‘change the value’, but not change depositLabel’s text.
To change depositLabel’s text, use one of following setences:
self.depositLabel['text'] = 'change the value'
OR
self.depositLabel.config(text='change the value')