We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
setup_handlers
1 parent cbbf442 commit a5c3ad6Copy full SHA for a5c3ad6
python/jupytercad_core/jupytercad_core/__init__.py
@@ -9,9 +9,6 @@
9
warnings.warn("Importing 'jupytercad_core' outside a proper installation.")
10
__version__ = "dev"
11
12
-from .handlers import setup_handlers
13
-
14
15
def _jupyter_labextension_paths():
16
return [{"src": "labextension", "dest": "@jupytercad/jupytercad-core"}]
17
@@ -24,5 +21,6 @@ def _load_jupyter_server_extension(server_app):
24
21
server_app: jupyterlab.labapp.LabApp
25
22
JupyterLab application instance
26
23
"""
+ from .handlers import setup_handlers
27
setup_handlers(server_app.web_app)
28
server_app.log.info("Registered jupytercad server extension")
0 commit comments