diff options
author | Sunil Shetye | 2019-06-25 15:24:11 +0530 |
---|---|---|
committer | Sunil Shetye | 2019-06-25 15:55:41 +0530 |
commit | 713e764817b7bf8c3bb4911c238f07780f3a0532 (patch) | |
tree | e7e236553cd964c2b83dc61ac2df69cafba0ca2f /src/kicadtoNgspice | |
parent | 32acf14bfbfa5d5874ebfdbf88ef64777f05e3f8 (diff) | |
download | eSim-713e764817b7bf8c3bb4911c238f07780f3a0532.tar.gz eSim-713e764817b7bf8c3bb4911c238f07780f3a0532.tar.bz2 eSim-713e764817b7bf8c3bb4911c238f07780f3a0532.zip |
pep8: break long lines
Diffstat (limited to 'src/kicadtoNgspice')
-rw-r--r-- | src/kicadtoNgspice/Analysis.py | 3 | ||||
-rw-r--r-- | src/kicadtoNgspice/Processing.py | 6 |
2 files changed, 5 insertions, 4 deletions
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 |