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 8d804b9 commit e50d8ffCopy full SHA for e50d8ff
src/index.ts
@@ -5,7 +5,7 @@ import {
5
6
import { IBlocklyRegistry } from 'jupyterlab-blockly';
7
8
-import BlocklyNiryo from './niryo_one_python_generators';
+import { BlocklyNiryo, BlocklyNed } from './niryo_one_python_generators';
9
10
/**
11
* Initialization data for the jupyterlab-niryo-one extension.
@@ -19,6 +19,9 @@ const plugin: JupyterFrontEndPlugin<void> = {
19
20
//Registering the new toolbox containing all Niryo One blocks.
21
blockly.registerToolbox('niryo', BlocklyNiryo.Toolbox);
22
+
23
+ //Registering the new toolbox containing all Niryo One blocks.
24
+ blockly.registerToolbox('ned2', BlocklyNed.Toolbox);
25
}
26
};
27
0 commit comments