11 lines
158 B
Python
11 lines
158 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
from ui.main_window import MainWindow
|
||
|
|
||
|
|
||
|
class GUI:
|
||
|
def __init__(self):
|
||
|
self.window = MainWindow()
|
||
|
|
||
|
self.window.show()
|