view main.py @ 3:eb2aa09653bd default tip

beginnings of CPU colors, daemon
author Brad Greco <brad@bgreco.net>
date Mon, 29 Mar 2021 20:27:09 -0400
parents b6d0a1e6ba3a
children
line wrap: on
line source

from ui.main_window import MainWindow


def main():
    MainWindow().init()


if __name__ == "__main__":
    main()