For some reason the \'obj._max_value\' and \'obj._current_value\' are not getting set. I have looked at many tutorials and it seems that I am doing it correctly. Does anyone
The property decorator doesn't work with old-style classes. Inherit your class from object to get a new-style class:
property
object
class Progress(object): # ...