Skip to content

Commit

Permalink
Fix identation
Browse files Browse the repository at this point in the history
  • Loading branch information
UmSenhorQualquer committed Aug 3, 2018
1 parent a4c1153 commit e83af89
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions pyforms/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-

__author__ = "Ricardo Ribeiro"
__credits__ = ["Ricardo Ribeiro"]
__license__ = 'GNU GPLv3'
__version__ = '4.0'
__maintainer__ = ["Ricardo Ribeiro", "Carlos Mão de Ferro"]
__email__ = ["ricardojvr@gmail.com", "cajomferro@gmail.com"]
__status__ = "Production"
__author__ = "Ricardo Ribeiro"
__credits__ = ["Ricardo Ribeiro"]
__license__ = 'GNU GPLv3'
__version__ = '4.0'
__maintainer__ = ["Ricardo Ribeiro", "Carlos Mão de Ferro"]
__email__ = ["ricardojvr@gmail.com", "cajomferro@gmail.com"]
__status__ = "Production"


from confapp import conf
Expand All @@ -17,7 +17,16 @@

# add local settings
try:
import local_settings
conf += local_settings
import local_settings
conf += local_settings
except:
pass
pass


if conf.PYFORMS_MODE == 'GUI':

from pyforms.gui.appmanager import start_app

elif conf.PYFORMS_MODE == 'TERMINAL':

from pyforms_terminal.appmanager import start_app

0 comments on commit e83af89

Please sign in to comment.