Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit cf24b55

Browse files
committed
Rename infer_jupyter_config -> infer_jupyter_proxy_config
1 parent 3d42f9d commit cf24b55

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

jupyter_dash/jupyter_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class JupyterDash(dash.Dash):
3636
_in_ipython = get_ipython() is not None
3737

3838
@classmethod
39-
def infer_jupyter_config(cls):
39+
def infer_jupyter_proxy_config(cls):
4040
"""
4141
Infer the current Jupyter server configuration. This will detect
4242
the proper request_pathname_prefix and server_url values to use when

notebooks/getting_started.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"metadata": {},
4545
"outputs": [],
4646
"source": [
47-
"JupyterDash.infer_jupyter_config()"
47+
"JupyterDash.infer_jupyter_proxy_config()"
4848
]
4949
},
5050
{

notebooks/getting_started.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# When running in JupyterHub or Binder, call the `infer_jupyter_config` function to detect the proxy configuration.
3333

3434
# %%
35-
JupyterDash.infer_jupyter_config()
35+
JupyterDash.infer_jupyter_proxy_config()
3636

3737
# %% [markdown]
3838
# Load and preprocess data

0 commit comments

Comments
 (0)