We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bd07bd commit cf2e0d6Copy full SHA for cf2e0d6
visualpython/js/m_apps/Instance.js
@@ -263,7 +263,8 @@ define([
263
let cmObj = this.getCodemirror('vp_instanceVariable');
264
let rightCode = (cmObj && cmObj.cm)?cmObj.cm.getValue():'';
265
if (leftCode && leftCode != '') {
266
- sbCode.appendFormat('{0} = {1}', leftCode, rightCode);
+ sbCode.appendFormatLine('{0} = {1}', leftCode, rightCode);
267
+ sbCode.append(leftCode); // show allocation (from version 2.4.10)
268
} else {
269
sbCode.appendFormat('{0}', rightCode);
270
}
0 commit comments