diff options
author | Sumanto Kar | 2022-01-31 16:53:17 +0530 |
---|---|---|
committer | GitHub | 2022-01-31 16:53:17 +0530 |
commit | a4c84ad5858d64054d7b810a913fe7ccfdbf92c0 (patch) | |
tree | 5604a7d20d4b76bfc1aa5fe736803d245a733e2a | |
parent | 2cac7350dd625e1922ae656196298586bd760498 (diff) | |
download | eSim-a4c84ad5858d64054d7b810a913fe7ccfdbf92c0.tar.gz eSim-a4c84ad5858d64054d7b810a913fe7ccfdbf92c0.tar.bz2 eSim-a4c84ad5858d64054d7b810a913fe7ccfdbf92c0.zip |
Resolved pep8 errors
-rw-r--r-- | src/ngspiceSimulation/NgspiceWidget.py | 8 |
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]) |