Skip to content

Commit 4ece515

Browse files
committed
Fix prettier
1 parent f069259 commit 4ece515

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ const EXTENSION_ID = 'matplotlib-jupyter:main';
1111
/**
1212
* The plugin.
1313
*/
14-
const jupyterMatplotlibPlugin: IPlugin<Application<Widget>, void> = ({
14+
const jupyterMatplotlibPlugin: IPlugin<Application<Widget>, void> = {
1515
id: EXTENSION_ID,
1616
requires: [IJupyterWidgetRegistry],
1717
activate: activateWidgetExtension,
1818
autoStart: true,
19-
} as unknown) as IPlugin<Application<Widget>, void>;
19+
} as unknown as IPlugin<Application<Widget>, void>;
2020
// the "as unknown as ..." typecast above is solely to support JupyterLab 1
2121
// and 2 in the same codebase and should be removed when we migrate to Lumino.
2222

0 commit comments

Comments
 (0)