Skip to content
Advertisement

Making child class inherit methods from parent in tkinter

I’m new to Tkinter and OOP. I’ve been trying to make child class inherit some methods from parent class because I’d have repeated code if I didn’t do it like that. But I’ve stumbled on a problem, caused probably by my limited knowledge of Tkinter and OOP.

Here is my code: (it’s really simplified, but it is enough to solve problem in complete build):

main.py

JavaScript

app.py

JavaScript

form_parent.py

JavaScript

test.py

JavaScript

And this is the error I get (something gets printed out, but no window appears):

JavaScript

I’m pretty sure I messed up the __init__ and some attributes, but I can’t find a way to make it right and working.

I’d be really grateful for any help.

Advertisement

Answer

Working answer by @JacksonPro

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement