I am working with tkinter and within the __init__() method of my Windows class, where I launch two threads that execute a method.
My problem is that I can't figure out where to call .join() so that those threads don't continue their execution once the main window is destroyed through Tk().destroy() method.