Skip to content

Commit 8f0f31c

Browse files
committed
remove initialization plugin
1 parent 4cd8648 commit 8f0f31c

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/index.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,6 @@ namespace CommandIDs {
2626
export const toggleBrowser = 'drives:toggle-main';
2727
}
2828

29-
/**
30-
* Initialization data for the @jupyter/drives extension.
31-
*/
32-
const plugin: JupyterFrontEndPlugin<void> = {
33-
id: '@jupyter/drives:plugin',
34-
description: 'A Jupyter extension to support drives in the backend.',
35-
autoStart: true,
36-
activate: (app: JupyterFrontEnd) => {
37-
console.log('JupyterLab extension @jupyter/drives is activated!');
38-
}
39-
};
40-
4129
const openDriveDialogPlugin: JupyterFrontEndPlugin<void> = {
4230
id: '@jupyter/drives:widget',
4331
description: 'Open a dialog to select drives to be added in the filebrowser.',
@@ -202,7 +190,6 @@ const driveFileBrowser: JupyterFrontEndPlugin<void> = {
202190
};
203191

204192
const plugins: JupyterFrontEndPlugin<any>[] = [
205-
plugin,
206193
driveFileBrowser,
207194
openDriveDialogPlugin
208195
];

0 commit comments

Comments
 (0)