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 d26c9d3 commit ee1ddeaCopy full SHA for ee1ddea
dash/_hooks.py
@@ -38,8 +38,6 @@ def __init__(self) -> None:
38
"routes": [],
39
"error": [],
40
"callback": [],
41
- "script": [],
42
- "stylesheet": [],
43
"index": [],
44
}
45
self._js_dist = []
tests/integration/test_hooks.py
@@ -13,6 +13,9 @@ def hook_cleanup():
13
hooks._ns["route"] = []
14
hooks._ns["error"] = []
15
hooks._ns["callback"] = []
16
+ hooks._ns["index"] = []
17
+ hooks._css_dist = []
18
+ hooks._js_dist = []
19
20
21
def test_hook001_layout(hook_cleanup, dash_duo):
0 commit comments