We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 147c587 commit 5189b15Copy full SHA for 5189b15
1 file changed
docs/pyscript_plugin.js
@@ -5,8 +5,7 @@ export default class LearnPython3Plugin {
5
}
6
7
afterPyScriptExec(opt) {
8
- console.log('Result >>>');
9
- console.log(opt.result);
+ console.log(opt);
10
let
11
tag = opt.pyScriptTag,
12
outputId = tag.getAttribute('output'),
@@ -16,4 +15,9 @@ export default class LearnPython3Plugin {
16
15
$i.removeClass('uk-icon-spin');
17
$btn.removeAttr('disabled');
18
+
19
+ onUserError(err) {
20
+ console.log('Error >>>');
21
+ console.error(err);
22
+ }
23
0 commit comments