File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import {
2
2
JupyterFrontEnd ,
3
- JupyterFrontEndPlugin ,
3
+ JupyterFrontEndPlugin
4
4
} from '@jupyterlab/application' ;
5
5
6
6
import { ICommandPalette } from '@jupyterlab/apputils' ;
@@ -30,7 +30,7 @@ const extension: JupyterFrontEndPlugin<void> = {
30
30
autoStart : true ,
31
31
optional : [ ILauncher ] ,
32
32
requires : [ ICommandPalette , IMainMenu , ITranslator ] ,
33
- activate : activate ,
33
+ activate
34
34
} ;
35
35
36
36
/**
@@ -58,7 +58,7 @@ function activate(
58
58
if ( launcher ) {
59
59
launcher . add ( {
60
60
command : CommandIDs . create ,
61
- category : category ,
61
+ category : category
62
62
} ) ;
63
63
}
64
64
@@ -85,7 +85,7 @@ function activate(
85
85
commands . addCommand ( CommandIDs . create , {
86
86
label : trans . __ ( 'Open the Signal Example Panel' ) ,
87
87
caption : trans . __ ( 'Open the Signal Example Panel' ) ,
88
- execute : createPanel ,
88
+ execute : createPanel
89
89
} ) ;
90
90
91
91
// Add items in command palette and menu
You can’t perform that action at this time.
0 commit comments