A monorepo containing jupyter-blocks and jupyter-tidyblocks. Blockly extension for JupyterLab.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Comment unused variables

hbcarlos 2caf2b22 5cee0a78

+3 -3
+3 -3
src/layout.ts
··· 17 17 private _host: HTMLElement; 18 18 private _manager: BlocklyManager; 19 19 private _workspace: Blockly.WorkspaceSvg; 20 - private _sessionContext: ISessionContext; 20 + //private _sessionContext: ISessionContext; 21 21 private _outputArea: Widget; 22 22 23 23 /** ··· 31 31 ) { 32 32 super(); 33 33 this._manager = manager; 34 - this._sessionContext = sessionContext; 34 + //this._sessionContext = sessionContext; 35 35 36 36 // Creating the container for the Blockly editor 37 37 // and the output area to render the execution replies. ··· 85 85 } 86 86 87 87 run(): void { 88 - const code = this._manager.generator.workspaceToCode(this._workspace); 88 + //const code = this._manager.generator.workspaceToCode(this._workspace); 89 89 // Execute the code using the kernel 90 90 } 91 91