We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06628f4 commit d53154dCopy full SHA for d53154d
src/idom/core/vdom.py
@@ -251,7 +251,7 @@ def custom_vdom_constructor(func: _CustomVdomDictConstructor) -> VdomDictConstru
251
"""Cast function to VdomDictConstructor"""
252
253
@wraps(func)
254
- def wrapper(*attributes_and_children: Any):
+ def wrapper(*attributes_and_children: Any) -> VdomDict:
255
attributes, children = separate_attributes_and_children(attributes_and_children)
256
key = attributes.pop("key", None)
257
attributes, event_handlers = separate_attributes_and_event_handlers(attributes)
0 commit comments