Skip to content

Commit 2fec4b4

Browse files
committed
Add link to dash-in-jupyter in the warning.
1 parent a959be1 commit 2fec4b4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dash/dash.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,10 @@ def __init__( # pylint: disable=too-many-statements
513513
self.logger.setLevel(logging.INFO)
514514

515515
if self.__class__.__name__ == "JupyterDash":
516-
warnings.warn("JupyterDash is deprecated, use Dash instead.")
516+
warnings.warn(
517+
"JupyterDash is deprecated, use Dash instead.\n"
518+
"See https://dash.plotly.com/dash-in-jupyter for more details."
519+
)
517520

518521
def init_app(self, app=None, **kwargs):
519522
"""Initialize the parts of Dash that require a flask app."""

0 commit comments

Comments
 (0)