Skip to content

Commit 2de3b43

Browse files
committed
Prettier for the signals example
1 parent e4935c7 commit 2de3b43

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

basics/signals/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {
22
JupyterFrontEnd,
3-
JupyterFrontEndPlugin,
3+
JupyterFrontEndPlugin
44
} from '@jupyterlab/application';
55

66
import { ICommandPalette } from '@jupyterlab/apputils';
@@ -30,7 +30,7 @@ const extension: JupyterFrontEndPlugin<void> = {
3030
autoStart: true,
3131
optional: [ILauncher],
3232
requires: [ICommandPalette, IMainMenu, ITranslator],
33-
activate: activate,
33+
activate
3434
};
3535

3636
/**
@@ -58,7 +58,7 @@ function activate(
5858
if (launcher) {
5959
launcher.add({
6060
command: CommandIDs.create,
61-
category: category,
61+
category: category
6262
});
6363
}
6464

@@ -85,7 +85,7 @@ function activate(
8585
commands.addCommand(CommandIDs.create, {
8686
label: trans.__('Open the Signal Example Panel'),
8787
caption: trans.__('Open the Signal Example Panel'),
88-
execute: createPanel,
88+
execute: createPanel
8989
});
9090

9191
// Add items in command palette and menu

0 commit comments

Comments
 (0)