Skip to content

Commit 2b46d60

Browse files
authored
Merge pull request #108 from blink1073/fix-ci
Fix linting error
2 parents 8c3d478 + 150947a commit 2b46d60

File tree

1 file changed

+2
-2
lines changed
  • {{cookiecutter.github_project_name}}/src

1 file changed

+2
-2
lines changed

{{cookiecutter.github_project_name}}/src/plugin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ const EXTENSION_ID = '{{ cookiecutter.npm_package_name }}:plugin';
1616
/**
1717
* The example plugin.
1818
*/
19-
const examplePlugin: IPlugin<Application<Widget>, void> = ({
19+
const examplePlugin: IPlugin<Application<Widget>, void> = {
2020
id: EXTENSION_ID,
2121
requires: [IJupyterWidgetRegistry],
2222
activate: activateWidgetExtension,
2323
autoStart: true,
24-
} as unknown) as IPlugin<Application<Widget>, void>;
24+
} as unknown as IPlugin<Application<Widget>, void>;
2525
// the "as unknown as ..." typecast above is solely to support JupyterLab 1
2626
// and 2 in the same codebase and should be removed when we migrate to Lumino.
2727

0 commit comments

Comments
 (0)