From 3951b5a2d846993dd733864adaa11cb57646cb4b Mon Sep 17 00:00:00 2001 From: Tim Daniel Metzler Date: Thu, 24 Oct 2024 16:04:00 +0200 Subject: [PATCH] Remove hello world from lab-extension --- packages/lab-extension/src/index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/lab-extension/src/index.ts b/packages/lab-extension/src/index.ts index 31d3dced..b8e164c8 100644 --- a/packages/lab-extension/src/index.ts +++ b/packages/lab-extension/src/index.ts @@ -3,8 +3,6 @@ import { JupyterFrontEndPlugin } from '@jupyterlab/application'; -import { hello_world } from '@e2xgrader/cells'; - import { ISettingRegistry } from '@jupyterlab/settingregistry'; /** @@ -20,7 +18,6 @@ const plugin: JupyterFrontEndPlugin = { settingRegistry: ISettingRegistry | null ) => { console.log('JupyterLab extension @e2xgrader/labextension is activated!'); - hello_world(); if (settingRegistry) { settingRegistry .load(plugin.id)