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 16662a9 commit 03e62cbCopy full SHA for 03e62cb
dash/dash.py
@@ -3,6 +3,7 @@
3
import sys
4
import collections
5
import importlib
6
+import warnings
7
from contextvars import copy_context
8
from importlib.machinery import ModuleSpec
9
import pkgutil
@@ -511,6 +512,9 @@ def __init__( # pylint: disable=too-many-statements
511
512
513
self.logger.setLevel(logging.INFO)
514
515
+ if self.__class__.__name__ == "JupyterDash":
516
+ warnings.warn("JupyterDash is deprecated, use Dash instead.")
517
+
518
def init_app(self, app=None, **kwargs):
519
"""Initialize the parts of Dash that require a flask app."""
520
0 commit comments