From 827ffee432a2669c6deca7424685ff1d4fcaabd4 Mon Sep 17 00:00:00 2001 From: Sumanto Kar Date: Mon, 2 May 2022 20:08:35 +0530 Subject: Fixed Pep8 issues --- src/ngspiceSimulation/NgspiceWidget.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/ngspiceSimulation') 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) -- cgit