We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a959be1 commit 2fec4b4Copy full SHA for 2fec4b4
dash/dash.py
@@ -513,7 +513,10 @@ def __init__( # pylint: disable=too-many-statements
513
self.logger.setLevel(logging.INFO)
514
515
if self.__class__.__name__ == "JupyterDash":
516
- warnings.warn("JupyterDash is deprecated, use Dash instead.")
+ warnings.warn(
517
+ "JupyterDash is deprecated, use Dash instead.\n"
518
+ "See https://dash.plotly.com/dash-in-jupyter for more details."
519
+ )
520
521
def init_app(self, app=None, **kwargs):
522
"""Initialize the parts of Dash that require a flask app."""
0 commit comments