mirror of
https://github.com/jupyter/notebook.git
synced 2025-02-17 12:39:54 +08:00
9 lines
166 B
Python
9 lines
166 B
Python
from typing import Any
|
|
|
|
from jupyterlab.galata import configure_jupyter_server
|
|
|
|
c: Any
|
|
c.JupyterNotebookApp.expose_app_in_browser = True
|
|
|
|
configure_jupyter_server(c)
|