def main(): app.config(dict(title="Importer", cmdhdl=command_handler, inithdl=init_handler)) app.start()
def main(): gui.config(dict(title="Mastermind", cmdhdl=command_handler, inithdl= init_handler)) gui.start() pass
def main(): app.config(dict(title="Rock - Paper - Scissor", cmdhdl=command_handler, inithdl=init_handler)) app.start()