From 3f28232f0d7ad1a3c6a72c603c5f8318a57fba64 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Thu, 26 Sep 2013 01:06:19 -0500 Subject: put the tk loop into __main__ --- pokemontools/map_editor.py | 35 ++++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/pokemontools/map_editor.py b/pokemontools/map_editor.py index c6f9f16..11bfb4b 100644 --- a/pokemontools/map_editor.py +++ b/pokemontools/map_editor.py @@ -617,18 +617,23 @@ def asm_at_label(asm, label): content += [[l, comment]] return content - -root = Tk() -root.wm_title("MAP EDITOR") -app = Application(master=root) - -try: - app.mainloop() -except KeyboardInterrupt: - pass - -try: - root.destroy() -except TclError: - pass - +def main(): + """ + Launches the map editor. + """ + root = Tk() + root.wm_title("MAP EDITOR") + app = Application(master=root) + + try: + app.mainloop() + except KeyboardInterrupt: + pass + + try: + root.destroy() + except TclError: + pass + +if __name__ == "__main__": + main() -- cgit v1.2.3