We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92633fb commit 1b39a5aCopy full SHA for 1b39a5a
1 file changed
reflex/state.py
@@ -14,7 +14,6 @@
14
import re
15
import sys
16
import time
17
-import typing
18
import uuid
19
import warnings
20
from collections.abc import AsyncIterator, Callable, Iterator, Sequence
@@ -1892,7 +1891,7 @@ async def _process_event(
1892
1891
fn = functools.partial(handler.fn, state)
1893
1894
try:
1895
- type_hints = typing.get_type_hints(handler.fn)
+ type_hints = types.get_type_hints(handler.fn)
1896
except Exception:
1897
type_hints = {}
1898
0 commit comments