Пример #1
0
class Minispice(object):
    def __init__(self):
        self.ui = Ui()
        self.controller = Controller()

    def run(self):
        # Start threads
        self.ui.start()
        self.controller.start()

        while True:
            sleep(0.01)