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 79fa356 commit 6924a0dCopy full SHA for 6924a0d
dash/dash.py
@@ -393,6 +393,10 @@ class Dash(ObsoleteChecker):
393
394
server: flask.Flask
395
396
+ # Layout is a complex type which can be many things
397
+ _layout: Any
398
+ _extra_components: Any
399
+
400
def __init__( # pylint: disable=too-many-statements
401
self,
402
name: Optional[str] = None,
@@ -1896,7 +1900,7 @@ def enable_dev_tools(
1896
1900
1897
1901
if "_pytest" in sys.modules:
1898
1902
from _pytest.assertion.rewrite import ( # pylint: disable=import-outside-toplevel
1899
- AssertionRewritingHook,
1903
+ AssertionRewritingHook, # type: ignore[reportPrivateImportUsage]
1904
)
1905
1906
for index, package in enumerate(packages):
0 commit comments