Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
echarles committed Jul 25, 2023
1 parent 6f3bf14 commit b250adc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions datalayer/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
from jupyter_server.base.handlers import APIHandler, JupyterHandler
from jupyter_server.extension.handler import ExtensionHandlerMixin, ExtensionHandlerJinjaMixin

from genson import SchemaBuilder


# pylint: disable=W0223
class BaseTemplateHandler(ExtensionHandlerJinjaMixin, ExtensionHandlerMixin, JupyterHandler):
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ classifiers = [
"Programming Language :: Python :: 3.11",
]
dependencies = [
"genson",
"jupyter_server>=2,<3",
]
dynamic = ["version", "description", "authors", "urls", "keywords"]
Expand Down
4 changes: 2 additions & 2 deletions src/widget.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ReactWidget } from '@jupyterlab/apputils';

import DemoComponent from './component/Datalayer';
import Datalayer from './components/Datalayer';

export class CounterWidget extends ReactWidget {
constructor() {
Expand All @@ -9,6 +9,6 @@ export class CounterWidget extends ReactWidget {
}

render(): JSX.Element {
return <DemoComponent />;
return <Datalayer />;
}
}

0 comments on commit b250adc

Please sign in to comment.