Changed tabs to 4 spaces. Using now original modified scripts under main folder. Application is executed using guimain.py
8 lines
No EOL
157 B
Python
8 lines
No EOL
157 B
Python
#!/usr/bin/python
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
from app.tkapp.KnittingApp import KnittingApp
|
|
|
|
if __name__ == "__main__":
|
|
app = KnittingApp()
|
|
app.mainloop() |