diff options
author | Sumanto Kar | 2022-05-02 20:10:41 +0530 |
---|---|---|
committer | Eyantra698Sumanto | 2022-05-02 20:29:14 +0530 |
commit | 4412deaefad7ab9170b44d441b825c5d87ed1dff (patch) | |
tree | e52ca1b6c6095c08affcc2a4428d76285f3d8e34 | |
parent | 827ffee432a2669c6deca7424685ff1d4fcaabd4 (diff) | |
download | eSim-4412deaefad7ab9170b44d441b825c5d87ed1dff.tar.gz eSim-4412deaefad7ab9170b44d441b825c5d87ed1dff.tar.bz2 eSim-4412deaefad7ab9170b44d441b825c5d87ed1dff.zip |
Fixed Pep8 issues
-rw-r--r-- | src/ngspiceSimulation/NgspiceWidget.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py index 5d493a42..27e180ac 100644 --- a/src/ngspiceSimulation/NgspiceWidget.py +++ b/src/ngspiceSimulation/NgspiceWidget.py @@ -41,7 +41,7 @@ class NgspiceWidget(QtWidgets.QWidget): else: # For Linux OS self.command = "cd " + projPath + \ - ";ngspice -r " + command.replace(".cir.out",".raw") + \ + ";ngspice -r " + command.replace(".cir.out", ".raw") + \ " " + command # Creating argument for process self.args = ['-hold', '-e', self.command] @@ -54,6 +54,6 @@ class NgspiceWidget(QtWidgets.QWidget): self.process.pid()) ) self.process = QtCore.QProcess(self) - self.command ="gaw " + command.replace(".cir.out",".raw") + self.command ="gaw " + command.replace(".cir.out", ".raw") self.process.start('sh', ['-c', self.command]) print(self.command) |