From 2fec4b45097fe5c797fdbbdc27e4bb527094759e Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 29 Jun 2023 11:23:22 -0400 Subject: [PATCH] Add link to dash-in-jupyter in the warning. --- dash/dash.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dash/dash.py b/dash/dash.py index d6966147d0..64b2a1ea02 100644 --- a/dash/dash.py +++ b/dash/dash.py @@ -513,7 +513,10 @@ def __init__( # pylint: disable=too-many-statements self.logger.setLevel(logging.INFO) if self.__class__.__name__ == "JupyterDash": - warnings.warn("JupyterDash is deprecated, use Dash instead.") + warnings.warn( + "JupyterDash is deprecated, use Dash instead.\n" + "See https://dash.plotly.com/dash-in-jupyter for more details." + ) def init_app(self, app=None, **kwargs): """Initialize the parts of Dash that require a flask app."""