summaryrefslogtreecommitdiff
path: root/src/ngspiceSimulation/NgspiceWidget.py
diff options
context:
space:
mode:
authorSumanto Kar2022-01-31 16:53:17 +0530
committerGitHub2022-01-31 16:53:17 +0530
commita4c84ad5858d64054d7b810a913fe7ccfdbf92c0 (patch)
tree5604a7d20d4b76bfc1aa5fe736803d245a733e2a /src/ngspiceSimulation/NgspiceWidget.py
parent2cac7350dd625e1922ae656196298586bd760498 (diff)
downloadeSim-a4c84ad5858d64054d7b810a913fe7ccfdbf92c0.tar.gz
eSim-a4c84ad5858d64054d7b810a913fe7ccfdbf92c0.tar.bz2
eSim-a4c84ad5858d64054d7b810a913fe7ccfdbf92c0.zip
Resolved pep8 errors
Diffstat (limited to 'src/ngspiceSimulation/NgspiceWidget.py')
-rw-r--r--src/ngspiceSimulation/NgspiceWidget.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py
index ad93bbbe..c068d0de 100644
--- a/src/ngspiceSimulation/NgspiceWidget.py
+++ b/src/ngspiceSimulation/NgspiceWidget.py
@@ -53,7 +53,7 @@ class NgspiceWidget(QtWidgets.QWidget):
)
self.process = QtCore.QProcess(self)
self.command = "ngspice -b -r " + \
- command.replace(".cir.out" , ".raw") + " -o " \
- + command.replace(".cir.out" , ".out") + " " + command + \
- "; gaw " + command.replace(".cir.out" , ".raw")
- self.process.start('sh' , ['-c' , self.command])
+ command.replace(".cir.out", ".raw") + " -o " \
+ + command.replace(".cir.out", ".out") + " " + command + \
+ "; gaw " + command.replace(".cir.out", ".raw")
+ self.process.start('sh', ['-c', self.command])