Skip to content

Commit a1a185e

Browse files
committed
woops
1 parent 68b5170 commit a1a185e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

reflex/event.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1901,15 +1901,13 @@ def __call__(self, *args: Var) -> Any:
19011901
"""
19021902

19031903

1904-
BasicEventTypes = EventSpec | EventHandler | Var[Any]
1905-
19061904
ARGS = TypeVarTuple("ARGS")
19071905

19081906
LambdaOrState = LambdaEventCallback[Unpack[ARGS]] | EventCallback[Unpack[ARGS]]
19091907

19101908
ItemOrList = V | List[V]
19111909

1912-
IndividualEventType = BasicEventTypes | LambdaOrState[Unpack[ARGS]]
1910+
IndividualEventType = LambdaOrState[Unpack[ARGS]] | EventSpec | EventHandler | Var[Any]
19131911
EventType = ItemOrList[IndividualEventType[Unpack[ARGS]]]
19141912

19151913

0 commit comments

Comments
 (0)