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 82ec7d0 commit c6cbe97Copy full SHA for c6cbe97
dash/_callback.py
@@ -540,7 +540,7 @@ def _prepare_response(
540
allow_dynamic_callbacks,
541
):
542
"""Prepare the response object based on the callback output."""
543
- component_ids = collections.defaultdict(dict)
+ component_ids: dict = collections.defaultdict(dict)
544
545
if has_output:
546
if not multi:
dash/types.py
@@ -73,3 +73,4 @@ class CallbackDispatchResponse(TypedDict):
73
multi: NotRequired[bool]
74
response: NotRequired[Dict[str, CallbackOutput]]
75
sideUpdate: NotRequired[Dict[str, CallbackSideOutput]]
76
+ dist: NotRequired[List[Any]]
0 commit comments