Skip to content

Commit

Permalink
addin main
Browse files Browse the repository at this point in the history
  • Loading branch information
kamichal committed Mar 29, 2016
1 parent 81e4564 commit 54b754f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
# -*- coding:utf-8 -*-

pass
pass
19 changes: 19 additions & 0 deletions __main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
'''
@author: kamichal
'''

import sys
from PyQt4 import QtGui
from PrawoWiazkiApp import OknoGlowne

if __name__ == '__main__':

app = QtGui.QApplication(sys.argv)
app.setApplicationName('OknoGlowne')

main = OknoGlowne()
main.resize(666, 333)
main.show()

sys.exit(app.exec_())

0 comments on commit 54b754f

Please sign in to comment.