16 lines
233 B
Python
16 lines
233 B
Python
|
# Python imports
|
||
|
|
||
|
# Lib imports
|
||
|
|
||
|
# Application imports
|
||
|
from window import Window
|
||
|
|
||
|
|
||
|
class Application:
|
||
|
def __init__(self):
|
||
|
super(Application, self).__init__()
|
||
|
|
||
|
|
||
|
def run(self):
|
||
|
win = Window()
|
||
|
win.start()
|