···3939 // and the output area to render the execution replies.
4040 this._host = document.createElement('div');
41414242- // Creating a SimplifiedOutputArea widget to render the
4242+ // Creating a SimplifiedOutputArea widget to render the
4343 // outputs from the execution reply.
4444- this._outputArea= new SimplifiedOutputArea({
4444+ this._outputArea = new SimplifiedOutputArea({
4545 model: new OutputAreaModel({ trusted: true }),
4646 rendermime
4747 });
···9999 // Execute the code using the kernel, by using a static method from the
100100 // same class to make an execution request.
101101 SimplifiedOutputArea.execute(code, this._outputArea, this._sessionContext)
102102- .then(resp => {
103103- this.addWidget(this._outputArea);
104104- this._resizeWorkspace();
105105- })
106106- .catch(e => console.error(e));
102102+ .then(resp => {
103103+ this.addWidget(this._outputArea);
104104+ this._resizeWorkspace();
105105+ })
106106+ .catch(e => console.error(e));
107107 }
108108109109 /**
···130130 /**
131131 * Handle `after-attach` messages sent to the widget.
132132 */
133133- protected onAfterAttach(msg: Message): void {
133133+ protected onAfterAttach(msg: Message): void {
134134 //inject Blockly with appropiate JupyterLab theme.
135135 this._workspace = Blockly.inject(this._host, {
136136 toolbox: this._manager.toolbox,