diff options
author | maddy-2 | 2019-05-27 23:59:43 +0530 |
---|---|---|
committer | nilshah98 | 2019-06-07 11:03:16 +0530 |
commit | 48196556e90f5566e8d42088f596a5fc7ae8e918 (patch) | |
tree | 2137e23f702c8f2046a1eb9b5c6eb4d1997b1656 /src/frontEnd/Workspace.py | |
parent | 90d656da8cc6dfb076fa2b8ec9764e9bf391bda7 (diff) | |
download | eSim-48196556e90f5566e8d42088f596a5fc7ae8e918.tar.gz eSim-48196556e90f5566e8d42088f596a5fc7ae8e918.tar.bz2 eSim-48196556e90f5566e8d42088f596a5fc7ae8e918.zip |
frontEnd made pep8 compliant
Diffstat (limited to 'src/frontEnd/Workspace.py')
-rw-r--r-- | src/frontEnd/Workspace.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/frontEnd/Workspace.py b/src/frontEnd/Workspace.py index ddad7f5a..7bc74deb 100644 --- a/src/frontEnd/Workspace.py +++ b/src/frontEnd/Workspace.py @@ -1,4 +1,4 @@ -#========================================================================= +# ========================================================================= # # FILE: Workspace.py # @@ -14,7 +14,7 @@ # ORGANIZATION: eSim team at FOSSEE, IIT Bombay. # CREATED: Wednesday 05 February 2015 # REVISION: --- -#========================================================================= +# ========================================================================= from PyQt4 import QtCore, QtGui from configuration.Appconfig import Appconfig import time @@ -34,7 +34,7 @@ class Workspace(QtGui.QWidget): self.initWorkspace() def initWorkspace(self): - #print "Calling workspace" + # print "Calling workspace" self.mainwindow = QtGui.QVBoxLayout() self.split = QtGui.QSplitter() @@ -100,10 +100,12 @@ class Workspace(QtGui.QWidget): self.obj_appconfig.print_info('Workspace : ' + self.create_workspace) # Checking if Workspace already exist or not if os.path.isdir(self.create_workspace): - self.obj_appconfig.default_workspace["workspace"] = self.create_workspace + self.obj_appconfig.default_workspace["workspace"] \ + = self.create_workspace else: os.mkdir(self.create_workspace) - self.obj_appconfig.default_workspace["workspace"] = self.create_workspace + self.obj_appconfig.default_workspace["workspace"] \ + = self.create_workspace self.imp_var = 1 self.close() var_appView.show() |