[Refactor] Move the application running code from __init__ to __main__

This commit is contained in:
2018-07-02 10:46:02 +02:00
parent 7846d9017d
commit 723cabbe72
2 changed files with 6 additions and 4 deletions

6
calsocial/__main__.py Normal file
View File

@@ -0,0 +1,6 @@
from calsocial import CalendarSocialApp
app = CalendarSocialApp('calsocial')
app.run()