Working with Tkinter, Progressbar, and Queue Working with Tkinter, Progressbar, and Queue tkinter tkinter

Working with Tkinter, Progressbar, and Queue


Take a look at this line of code:

self.counter = value

Prior to this line of code being executed, self.counter is an instance of IntVar. After this statement, self.counter is simply an int. Change the line to this:

self.counter.set(value)