Trying to build a GUI in Python at the moment, and I\'m stuck at this part in particular. Every time I try to run my code it just throws the error TypeError: __init__(
If you're using super(), you don't need to specify self explicitly.
You are getting that error because self is being interpreted as the argument for master. So it's like if you were calling __init__(master=self, master=master, **kwargs).