diff options
author | nilshah98 | 2019-05-28 00:27:24 +0530 |
---|---|---|
committer | nilshah98 | 2019-06-07 11:03:16 +0530 |
commit | 818c3f2d43914940ba3cdf580c5a6f26a8200834 (patch) | |
tree | 349e117543cd25c60bda36fcc555fb9b9b70b9ee /src/subcircuit/convertSub.py | |
parent | 48196556e90f5566e8d42088f596a5fc7ae8e918 (diff) | |
download | eSim-818c3f2d43914940ba3cdf580c5a6f26a8200834.tar.gz eSim-818c3f2d43914940ba3cdf580c5a6f26a8200834.tar.bz2 eSim-818c3f2d43914940ba3cdf580c5a6f26a8200834.zip |
projectManagement, ngspicetoModelica, subcircuit made pep8 compliant
Diffstat (limited to 'src/subcircuit/convertSub.py')
-rw-r--r-- | src/subcircuit/convertSub.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/subcircuit/convertSub.py b/src/subcircuit/convertSub.py index 23e6d52b..31ae3022 100644 --- a/src/subcircuit/convertSub.py +++ b/src/subcircuit/convertSub.py @@ -25,7 +25,7 @@ class convertSub(QtGui.QWidget): if self.obj_validation.validateKicad(self.projDir): # Checking if project has .cir file or not if self.obj_validation.validateCir(self.projDir): - #print "CIR file present" + # print "CIR file present" self.projName = os.path.basename(self.projDir) self.project = os.path.join(self.projDir, self.projName) @@ -35,10 +35,12 @@ class convertSub(QtGui.QWidget): else: self.msg = QtGui.QErrorMessage(None) self.msg.showMessage( - 'The subcircuit does not contain any Kicad netlist file for conversion.') + 'The subcircuit does not contain any Kicad netlist\ + file for conversion.') self.msg.setWindowTitle("Error Message") else: self.msg = QtGui.QErrorMessage(None) self.msg.showMessage( - 'Please select the subcircuit first. You can either create new subcircuit or open existing subcircuit') + 'Please select the subcircuit first. You can either create \ + new subcircuit or open existing subcircuit') self.msg.setWindowTitle("Error Message") |