Commit b9f825f3 authored by Boxiang Sun's avatar Boxiang Sun

erp5_notebook: If the Python statements have no output, then don't display anything

parent 9c428be4
...@@ -289,7 +289,7 @@ ...@@ -289,7 +289,7 @@
div.style.margin = '40px 10px'; div.style.margin = '40px 10px';
div.style.paddingLeft = '10px'; div.style.paddingLeft = '10px';
if (result_text !== 'undefined') { if (result_text !== undefined) {
result.innerHTML = result_text; result.innerHTML = result_text;
pre.appendChild(result); pre.appendChild(result);
div.appendChild(pre); div.appendChild(pre);
...@@ -299,13 +299,11 @@ ...@@ -299,13 +299,11 @@
function executePyCell(line_list) { function executePyCell(line_list) {
var result_text, code_text = line_list.join('\n'); var result_text, code_text = line_list.join('\n');
try { try {
result_text = pyodide.runPython(code_text); result_text = pyodide.runPython(code_text);
} catch (e) { } catch (e) {
result_text = e.message; result_text = e.message;
} }
renderCodeblock(result_text, 'python'); renderCodeblock(result_text, 'python');
} }
...@@ -364,10 +362,6 @@ ...@@ -364,10 +362,6 @@
console.log("Loading pyodide.asm.js"); console.log("Loading pyodide.asm.js");
return loadJSResource('pyodide.asm.js'); return loadJSResource('pyodide.asm.js');
}) })
.push(function () {
console.log("Delay the execution");
return RSVP.delay();
})
.push(function () { .push(function () {
console.log("Prepare to set postRun and pyodide"); console.log("Prepare to set postRun and pyodide");
return pyodideSetting(); return pyodideSetting();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment