diff options
author | Sumanto Kar | 2022-05-02 20:08:35 +0530 |
---|---|---|
committer | Eyantra698Sumanto | 2022-05-02 20:29:14 +0530 |
commit | 827ffee432a2669c6deca7424685ff1d4fcaabd4 (patch) | |
tree | 017a87716b4bc0a56250265d30bd4069fea02c87 | |
parent | a5dcf62a6bb64799fba2ad53cab58797f0562a19 (diff) | |
download | eSim-827ffee432a2669c6deca7424685ff1d4fcaabd4.tar.gz eSim-827ffee432a2669c6deca7424685ff1d4fcaabd4.tar.bz2 eSim-827ffee432a2669c6deca7424685ff1d4fcaabd4.zip |
Fixed Pep8 issues
-rw-r--r-- | src/ngspiceSimulation/NgspiceWidget.py | 5 |
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) |