summaryrefslogtreecommitdiff
path: root/src/kicadtoNgspice
diff options
context:
space:
mode:
Diffstat (limited to 'src/kicadtoNgspice')
-rw-r--r--src/kicadtoNgspice/Analysis.py3
-rw-r--r--src/kicadtoNgspice/Processing.py6
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