Skip to content

Commit 5b97840

Browse files
authored
Merge pull request #356 from martinRenou/fix_prettier
Fix prettier
2 parents f069259 + 4ece515 commit 5b97840

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)