From 713e764817b7bf8c3bb4911c238f07780f3a0532 Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Tue, 25 Jun 2019 15:24:11 +0530 Subject: pep8: break long lines --- src/kicadtoNgspice/Analysis.py | 3 ++- src/kicadtoNgspice/Processing.py | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'src/kicadtoNgspice') diff --git a/src/kicadtoNgspice/Analysis.py b/src/kicadtoNgspice/Analysis.py index eaa46390..b24f24c7 100644 --- a/src/kicadtoNgspice/Analysis.py +++ b/src/kicadtoNgspice/Analysis.py @@ -577,7 +577,8 @@ class Analysis(QtGui.QWidget): except BaseException: self.track_obj.op_check.append('0') - # QtCore.QObject.connect(check,SIGNAL("stateChanged()"),check,SLOT("checkedSlot")) + # QtCore.QObject.connect(check, SIGNAL("stateChanged()"), check, + # SLOT("checkedSlot")) self.check.stateChanged.connect(self.setflag) # self.flagcheck = 1 # self.flagcheck= 2 diff --git a/src/kicadtoNgspice/Processing.py b/src/kicadtoNgspice/Processing.py index 216383e6..a0f2c79f 100644 --- a/src/kicadtoNgspice/Processing.py +++ b/src/kicadtoNgspice/Processing.py @@ -471,9 +471,9 @@ class PrcocessNetlist: schematicInfo.append(modelLine) k = k + 1 # For iron core - modelLine = "a" + str(k) + " (" + words[4] + " " + words[2] + ") \ - (interNode_" + str( - interMediateNodeCount + 1) + " " + words[3] + ") " + modelLine = "a" + str(k) + " (" + words[4] + " " + \ + words[2] + ") (interNode_" + \ + str(interMediateNodeCount + 1) + " " + words[3] + ") " modelLine += compName + "_secondary" schematicInfo.append(modelLine) k = k + 1 -- cgit