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/openSub.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/openSub.py')
-rw-r--r-- | src/subcircuit/openSub.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/subcircuit/openSub.py b/src/subcircuit/openSub.py index 32ad5d39..ba6d0617 100644 --- a/src/subcircuit/openSub.py +++ b/src/subcircuit/openSub.py @@ -19,7 +19,9 @@ class openSub(QtGui.QWidget): None, "Open File", "../SubcircuitLibrary")) if self.editfile: self.obj_Appconfig = Appconfig() - self.obj_Appconfig.current_subcircuit['SubcircuitName'] = self.editfile + self.obj_Appconfig.current_subcircuit['SubcircuitName'] = ( + self.editfile + ) self.schname = os.path.basename(self.editfile) self.editfile = os.path.join(self.editfile, self.schname) self.cmd = "eeschema " + self.editfile + ".sch " |