mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 10:28:02 +00:00
14 lines
340 B
Python
14 lines
340 B
Python
def _jupyter_labextension_paths():
|
|
return [{"src": "labextension", "dest": "jupyterlab-plotly"}]
|
|
|
|
|
|
def _jupyter_nbextension_paths():
|
|
return [
|
|
{
|
|
"section": "notebook",
|
|
"src": "nbextension",
|
|
"dest": "jupyterlab-plotly",
|
|
"require": "jupyterlab-plotly/extension",
|
|
}
|
|
]
|