summaryrefslogtreecommitdiff
path: root/src/ngspiceSimulation/NgspiceWidget.py
diff options
context:
space:
mode:
authorSumanto Kar2022-05-02 20:08:35 +0530
committerEyantra698Sumanto2022-05-02 20:29:14 +0530
commit827ffee432a2669c6deca7424685ff1d4fcaabd4 (patch)
tree017a87716b4bc0a56250265d30bd4069fea02c87 /src/ngspiceSimulation/NgspiceWidget.py
parenta5dcf62a6bb64799fba2ad53cab58797f0562a19 (diff)
downloadeSim-827ffee432a2669c6deca7424685ff1d4fcaabd4.tar.gz
eSim-827ffee432a2669c6deca7424685ff1d4fcaabd4.tar.bz2
eSim-827ffee432a2669c6deca7424685ff1d4fcaabd4.zip
Fixed Pep8 issues
Diffstat (limited to 'src/ngspiceSimulation/NgspiceWidget.py')
-rw-r--r--src/ngspiceSimulation/NgspiceWidget.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py
index 6e9d4fe1..5d493a42 100644
--- a/src/ngspiceSimulation/NgspiceWidget.py
+++ b/src/ngspiceSimulation/NgspiceWidget.py
@@ -40,8 +40,9 @@ class NgspiceWidget(QtWidgets.QWidget):
os.chdir(tempdir)
else: # For Linux OS
- self.command = "cd " + projPath + ";ngspice -r " + command.replace(".cir.out",".raw") + \
- " " + command
+ self.command = "cd " + projPath + \
+ ";ngspice -r " + command.replace(".cir.out",".raw") + \
+ " " + command
# Creating argument for process
self.args = ['-hold', '-e', self.command]
self.process.start('xterm', self.args)