From a4c84ad5858d64054d7b810a913fe7ccfdbf92c0 Mon Sep 17 00:00:00 2001 From: Sumanto Kar Date: Mon, 31 Jan 2022 16:53:17 +0530 Subject: Resolved pep8 errors --- src/ngspiceSimulation/NgspiceWidget.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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]) -- cgit