Skip to content

Commit 3db4b33

Browse files
committed
huh
1 parent b44efe2 commit 3db4b33

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

reflex_chakra/components/overlay/tooltip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class Tooltip(ChakraComponent):
6565
should_wrap_children: Var[bool]
6666

6767
# Fired when the tooltip is closing.
68-
on_close: EventHandler[list]
68+
on_close: EventHandler[no_args_event_spec]
6969

7070
# Fired when the tooltip is opened.
7171
on_open: EventHandler[no_args_event_spec]

reflex_chakra/components/overlay/tooltip.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class Tooltip(ChakraComponent):
5353
custom_attrs: dict[str, Var | Any] | None = None,
5454
on_blur: EventType[()] | None = None,
5555
on_click: EventType[()] | EventType[PointerEventInfo] | None = None,
56-
on_close: EventType[Any] | None = None,
56+
on_close: EventType[()] | None = None,
5757
on_context_menu: EventType[()] | EventType[PointerEventInfo] | None = None,
5858
on_double_click: EventType[()] | EventType[PointerEventInfo] | None = None,
5959
on_focus: EventType[()] | None = None,

0 commit comments

Comments
 (0)